Reported by Archie Cobbs:

2003-12-02  Mark Wielaard  <mark@klomp.org>

	Reported by Archie Cobbs:
	* java/security/DigestInputStream.java (read(byte[], int, int): Call
	digest.update() with temp, not len as lenght.

From-SVN: r74186
This commit is contained in:
Mark Wielaard 2003-12-02 15:52:07 +00:00 committed by Michael Koch
parent 1c59130c86
commit 54cfd51955
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2003-12-02 Mark Wielaard <mark@klomp.org>
Reported by Archie Cobbs:
* java/security/DigestInputStream.java (read(byte[], int, int): Call
digest.update() with temp, not len as lenght.
2003-12-02 Michael Koch <konqueror@gmx.de>
* java/net/DatagramSocket.java

View file

@ -1,5 +1,5 @@
/* DigestInputStream.java --- An Input stream tied to a message digest
Copyright (C) 1999 Free Software Foundation, Inc.
Copyright (C) 1999, 2003 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -138,7 +138,7 @@ public class DigestInputStream extends FilterInputStream
int temp = in.read(b, off, len);
if (state == true && temp != -1)
digest.update(b, off, len);
digest.update(b, off, temp);
return temp;
}