Commit d281f2a2 by Tom Tromey Committed by Tom Tromey

re PR libgcj/4481 (java.io.File.getParent not working properly)

	Fix for PR libgcj/4481:
	* java/io/File.java (getParent): Handle case where path is "/".
	(normalizePath): Use correct string for UNC leader.

From-SVN: r46093
parent f3ca28bf
2001-10-08 Tom Tromey <tromey@redhat.com>
Fix for PR libgcj/4481:
* java/io/File.java (getParent): Handle case where path is "/".
(normalizePath): Use correct string for UNC leader.
2001-10-06 Mark Wielaard <mark@klomp.org>
* java/io/BufferedInputStream.java: Merge with Classpath
......
......@@ -84,9 +84,9 @@ public class File implements Serializable, Comparable
{
int dupIndex = p.indexOf(dupSeparator);
int plen = p.length();
// Special case: permit Windows UNC path prefix.
if (dupSeparator.equals("\\") && dupIndex == 0)
if (dupSeparator.equals("\\\\") && dupIndex == 0)
dupIndex = p.indexOf(dupSeparator, 1);
if (dupIndex == -1)
......@@ -181,6 +181,9 @@ public class File implements Serializable, Comparable
int last = path.lastIndexOf(separatorChar);
if (last == -1)
return null;
// FIXME: POSIX assumption.
if (last == 0 && path.charAt (0) == '/')
++last;
return path.substring(0, last);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment