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:
parent
1c6dcd2527
commit
16a5a05324
@ -1,3 +1,7 @@
|
||||
2005-04-18 Chris Burdess <dog@gnu.org>
|
||||
|
||||
* gnu/java/net/BASE64.java: Truncate encoded byte array.
|
||||
|
||||
2005-04-18 Michael Koch <konqueror@gmx.de>
|
||||
|
||||
gnu/java/awt/EmbeddedWindowSupport.java,
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user