PR libgcj/6652:
authormembar <membar@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 31 Oct 2003 03:02:47 +0000 (03:02 +0000)
committermembar <membar@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 31 Oct 2003 03:02:47 +0000 (03:02 +0000)
* java/io/natFileWin32.cc (getCanonicalPath): Treat "" like ".".

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73115 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/ChangeLog
libjava/java/io/natFileWin32.cc

index 10b7ab6..b6f7e23 100644 (file)
@@ -1,3 +1,8 @@
+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
index cee6b00..1559043 100644 (file)
@@ -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