Hi

I've found a bug in Java.Util.Zip :

When you compress files with the zipstream with deflatefast
(compression level 1-3) sometimes an exception is throwed.

If I change in DeflaterHuffman the isFull method from :
  return last_lit == BUFSIZE;

to

  return last_lit + 16 >= BUFSIZE;

the bug seems to have gone away, but I'm not sure that is the
case for all cases.

cya

_________________________________________________________________
Join the world’s largest e-mail service with MSN Hotmail. 
http://www.hotmail.com


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

Reply via email to