BASE64.java: Truncate encoded byte array.

2005-04-18  Chris Burdess  <dog@gnu.org>

	* gnu/java/net/BASE64.java: Truncate encoded byte array.

From-SVN: r98343
This commit is contained in:
Chris Burdess
2005-04-18 19:32:02 +00:00
committed by Michael Koch
parent 1c6dcd2527
commit 16a5a05324
2 changed files with 11 additions and 1 deletions
+7 -1
View File
@@ -1,5 +1,5 @@
/* BASE.java --
Copyright (C) 2003, 2004 Free Software Foundation, Inc.
Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -109,6 +109,12 @@ public final class BASE64
bt[ti++] = src[b3 & 0x3f];
}
}
if (ti < bt.length)
{
byte[] tmp = new byte[ti];
System.arraycopy(bt, 0, tmp, 0, ti);
bt = tmp;
}
/*while (ti < bt.length)
{
bt[ti++] = 0x3d;