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:
committed by
Bryce McKinlay
parent
3b56276ea5
commit
f50aa5059a
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user