This is the mail archive of the java-patches@sources.redhat.com 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]

Re: [PATCH] java.util.zip code updates


Hi,

On Wed, Nov 15, 2000 at 09:17:44PM -0700, Tom Tromey wrote:
> >>>>> "Mark" == Mark Wielaard <mark@klomp.org> writes:
> 
> Mark> -    c = crc_table[(c ^ bval) & 0xff] ^ (c >>> 8);
> Mark> +    c = crc_table[(c ^ (bval & 0xff)) & 0xff] ^ (c >>> 8);
> 
> When can this change matter?
It never matters. Sorry, thinko.

Thanks,

Mark

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