Commit b82183ab by Mohan Embar Committed by Mohan Embar

re PR libgcj/6652 (new java.io.File("").getCanonicalFile() throws exception)

	PR libgcj/6652:
	* java/io/natFileWin32.cc (getCanonicalPath): Treat "" like ".".

From-SVN: r73115
parent 9373164a
2003-10-30 Mohan Embar <gnustuff@thisiscool.com>
PR libgcj/6652:
* java/io/natFileWin32.cc (getCanonicalPath): Treat "" like ".".
2003-10-30 Bryce McKinlay <bryce@mckinlay.net.nz>
* java/lang/reflect/natMethod.cc (_Jv_CallAnyMethodA): Don't use vtable
......
......@@ -109,10 +109,15 @@ jstring
java::io::File::getCanonicalPath (void)
{
JV_TEMP_UTF_STRING (cpath, path);
// If the filename is blank, use the current directory.
const char* thepath = cpath.buf();
if (*thepath == '\0')
thepath = ".";
LPTSTR unused;
char buf2[MAX_PATH];
if(!GetFullPathName(cpath, MAX_PATH, buf2, &unused))
if(!GetFullPathName(thepath, MAX_PATH, buf2, &unused))
throw new IOException (JvNewStringLatin1 ("GetFullPathName failed"));
// FIXME: what encoding to assume for file names? This affects many
......
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