re PR libgcj/16134 (Memory leak in String.getBytes())

PR libgcj/16134:
	* gnu/gcj/convert/BytesToUnicode.java: Canonicalize encoding name
	before cache lookup. Thanks to Hannes Wallnoefer.
	* gnu/gcj/convert/UnicodeToBytes.java: Likewise.

From-SVN: r83501
This commit is contained in:
Bryce McKinlay
2004-06-22 17:21:23 +00:00
committed by Bryce McKinlay
parent 3b56276ea5
commit f50aa5059a
3 changed files with 11 additions and 2 deletions
+2 -1
View File
@@ -75,6 +75,7 @@ public abstract class BytesToUnicode extends IOConverter
{
/* First hunt in our cache to see if we have a decoder that is
already allocated. */
encoding = canonicalize(encoding);
synchronized (BytesToUnicode.class)
{
int i;
@@ -91,7 +92,7 @@ public abstract class BytesToUnicode extends IOConverter
}
// It's not in the cache, so now we have to do real work.
String className = "gnu.gcj.convert.Input_" + canonicalize (encoding);
String className = "gnu.gcj.convert.Input_" + encoding;
Class decodingClass;
try
{