]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
SystemClassLoader.java (init): Clear last_was_sep in loop.
authorTom Tromey <tromey@redhat.com>
Wed, 15 Jun 2005 19:05:43 +0000 (19:05 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Wed, 15 Jun 2005 19:05:43 +0000 (19:05 +0000)
* gnu/gcj/runtime/SystemClassLoader.java (init): Clear
last_was_sep in loop.

From-SVN: r100991

libjava/ChangeLog
libjava/gnu/gcj/runtime/SystemClassLoader.java

index 3f64814cc2a9f5f07124d886918a491a6b616ebd..b832616e94ddd699148a0e5efac1841a6a6f896b 100644 (file)
@@ -1,3 +1,8 @@
+2005-06-15  Tom Tromey  <tromey@redhat.com>
+
+       * gnu/gcj/runtime/SystemClassLoader.java (init): Clear
+       last_was_sep in loop.
+
 2005-06-15  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
 
        * configure.host: Handle Solaris 10/x86.
index e68770cc558b7a81ecaf45e54f6dc08846a1ecc8..1bb5ef94212862b00b5336d7f4ec7a2382a51561 100644 (file)
@@ -52,6 +52,7 @@ public final class SystemClassLoader extends URLClassLoader
                continue;
              }
 
+           last_was_sep = false;
            File path = new File(e);
            // Ignore invalid paths.
            if (!path.exists())