Possible crash in extractWindowsRootPrefix method
-------------------------------------------------
Key: VFS-338
URL: https://issues.apache.org/jira/browse/VFS-338
Project: Commons VFS
Issue Type: Bug
Affects Versions: 2.0
Environment: Windows
Reporter: Daniel R
extractWindowsRootPrefix method has a possible crash. Found it trying to get
special windows working.
if (startPos == maxlen && name.length() > startPos &&
name.charAt(startPos + 1) == '/')
{
// Too many '/'
throw new
FileSystemException("vfs.provider.local/not-absolute-file-name.error", uri);
}
This should be something like so:
if (startPos == maxlen && name.length() > startPos && name.length() >
(startPos + 1) && name.charAt(startPos + 1) == '/')
{
// Too many '/'
throw new
FileSystemException("vfs.provider.local/not-absolute-file-name.error", uri);
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.