Browse Source

bug#52560 - ArrayIndexOutOfBoundsException: -2 on NPOIFSFileSystem.readBAT

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1237629 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_3_8_FINAL
Maxim Valyanskiy 12 years ago
parent
commit
91f163c97a
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/java/org/apache/poi/poifs/filesystem/NPOIFSFileSystem.java

+ 1
- 1
src/java/org/apache/poi/poifs/filesystem/NPOIFSFileSystem.java View File

@@ -369,7 +369,7 @@ public class NPOIFSFileSystem extends BlockStore
for(int j=0; j<bigBlockSize.getXBATEntriesPerBlock(); j++) {
int fatAt = xfat.getValueAt(j);
if(fatAt == POIFSConstants.UNUSED_BLOCK) break;
if(fatAt == POIFSConstants.UNUSED_BLOCK || fatAt == POIFSConstants.END_OF_CHAIN) break;
readBAT(fatAt, loopDetector);
}
}

Loading…
Cancel
Save