This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: Patch: Fix PR/6652 on MinGW
- From: Tom Tromey <tromey at redhat dot com>
- To: gnustuff at thisiscool dot com
- Cc: Rutger Ovidius <ovid at mailandnews dot com>, Michael Koch <konqueror at gmx dot de>, java at gcc dot gnu dot org, java-patches at gcc dot gnu dot org
- Date: 19 Oct 2003 14:36:25 -0600
- Subject: Re: Patch: Fix PR/6652 on MinGW
- References: <LIGA9B6C0XVL8ROA8C0NKNJWTZWL.3f9179c8@p733>
- Reply-to: tromey at redhat dot com
>>>>> "Mohan" == Mohan Embar <gnustuff@thisiscool.com> writes:
Mohan> 2003-10-18 Mohan Embar <gnustuff@thisiscool.com>
Mohan> PR libgcj/6652:
Mohan> * java/io/natFileWin32.cc (getCanonicalPath): Treat "" like ".".
This looks fine to me. One note...
Mohan> + const char* thepath = *cpath.buf() ? cpath.buf() : ".";
Mohan> + // "" becomes "."
Put comments before the code, not after.
Tom