Bug 63431 -- unbug ChunkedCipherInputStream's read()

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1859251 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Tim Allison 2019-05-15 00:56:15 +00:00
parent b77c010743
commit b3da2d5e8a
1 changed files with 1 additions and 2 deletions

View File

@ -82,8 +82,7 @@ public abstract class ChunkedCipherInputStream extends LittleEndianInputStream {
@Override
public int read() throws IOException {
byte[] b = { 0 };
// FIXME: compare against -1 or 1? (bug 59893)
return (read(b) == 1) ? -1 : b[0];
return (read(b) == 1) ? b[0] : -1;
}
// do not implement! -> recursion