This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[4.0] Patch: FYI: class path fixlet


Mark pointed out that, long ago, I said I would put this on the 4.0
branch, but then I never did:

http://gcc.gnu.org/ml/java-patches/2005-q2/msg00723.html

I'm checking it in now.

If you know of another pending patch I forgot, please let me know.  I
try to stay on top of this but sometimes I miss them :-(

Tom

Index: ChangeLog
from  Tom Tromey  <tromey@redhat.com>

	* gnu/gcj/runtime/SystemClassLoader.java (init): Clear
	last_was_sep in loop.

Index: gnu/gcj/runtime/SystemClassLoader.java
===================================================================
--- gnu/gcj/runtime/SystemClassLoader.java	(revision 106653)
+++ gnu/gcj/runtime/SystemClassLoader.java	(working copy)
@@ -52,6 +52,7 @@
 		continue;
 	      }
 
+	    last_was_sep = false;
 	    File path = new File(e);
 	    // Ignore invalid paths.
 	    if (!path.exists())


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]