Merge "Fix problem where Base64InputStream single-byte reads were unsigned." into gingerbread
This commit is contained in:
@@ -112,7 +112,7 @@ public class Base64InputStream extends FilterInputStream {
|
||||
if (outputStart >= outputEnd) {
|
||||
return -1;
|
||||
} else {
|
||||
return coder.output[outputStart++];
|
||||
return coder.output[outputStart++] & 0xff;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user