Commit 54cfd519 by Mark Wielaard Committed by Michael Koch

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
parent 1c59130c
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
......
/* 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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment