This is the mail archive of the java@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]

Re: I need an advice


>>>>> "Jeff" == Jeff Sturm <jsturm@one-point.com> writes:

Jeff> 2001-08-17  Jeff Sturm  <jsturm@one-point.com>
Jeff> 	* gnu/gcj/convert/UnicodeToBytes.java (write): Write work buffer
Jeff> 	starting from zero offset.

Wow, I wonder how this survived so long.

Jeff> -    return write(work, inpos, inlength);
Jeff> +    return write(work, 0, inlength);

Shouldn't that be:

    return write(work, 0, srcEnd - inpos);

Tom


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