[github-356] extra condition change

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1902788 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2022-07-17 01:46:10 +00:00
parent 773ad5e825
commit dc7e2de82e
1 changed files with 1 additions and 1 deletions

View File

@ -255,7 +255,7 @@ public class TypedPropertyValue {
for (int i=0; i<skipBytes; i++) {
lei.mark(1);
int b = lei.read();
if (b == -1 || b != 0) {
if (b != 0) {
lei.reset();
break;
}