mirror of https://github.com/apache/poi.git
bug#52560 - ArrayIndexOutOfBoundsException: -2 on NPOIFSFileSystem.readBAT
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1237629 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d8627fa5e1
commit
91f163c97a
|
@ -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…
Reference in New Issue