mirror of https://github.com/apache/poi.git
The junit test failed with the original test-file (CDT_Data_Retention-PPT.ppt), so another check was necessary
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1569999 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5f7a447c7b
commit
6c24cb7020
|
@ -63,14 +63,14 @@ public final class StyleTextProp9Atom extends RecordAtom {
|
|||
schemes.add(item);
|
||||
i += item.getRecordLength();
|
||||
|
||||
if (i >= data.length) {
|
||||
if (i+4 >= data.length) {
|
||||
break;
|
||||
}
|
||||
int textCfException9 = LittleEndian.getInt(data, i );
|
||||
i += 4;
|
||||
//TODO analyze textCfException when have some test data
|
||||
|
||||
if (i >= data.length) {
|
||||
if (i+4 >= data.length) {
|
||||
break;
|
||||
}
|
||||
int textSiException = LittleEndian.getInt(data, i );
|
||||
|
@ -79,7 +79,7 @@ public final class StyleTextProp9Atom extends RecordAtom {
|
|||
if (0 != (textSiException & 0x40)) {
|
||||
i += 2; //skip fBidi
|
||||
}
|
||||
if (i >= data.length) {
|
||||
if (i+4 >= data.length) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue