Hi,

After getting the latest code from CVS, I ran into a problem
(ClassFormatError). Turned out to be due to a small bug in
java.net.URLClassLoader.

269c269,272
<                 in.read(classData);
---
>                 int pos = 0;
>                 while(length - pos > 0) {
>                     pos += in.read(classData, pos, length - pos);
>                 }

Regards,
Jeroen



_______________________________________________
Classpath mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/classpath

Reply via email to