If a NoteRecord has no author tag, it seems it can sometimes be double padded. Fixes #47251
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1597098 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6cc94cdae8
commit
834973efe0
@ -90,6 +90,10 @@ public final class NoteRecord extends StandardRecord {
|
|||||||
}
|
}
|
||||||
if (in.available() == 1) {
|
if (in.available() == 1) {
|
||||||
field_7_padding = Byte.valueOf(in.readByte());
|
field_7_padding = Byte.valueOf(in.readByte());
|
||||||
|
} else if (in.available() == 2 && length == 0) {
|
||||||
|
// If there's no author, may be double padded
|
||||||
|
field_7_padding = Byte.valueOf(in.readByte());
|
||||||
|
in.readByte();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1651,8 +1651,7 @@ public final class TestBugs extends BaseTestBugzillaIssues {
|
|||||||
openSample("47251.xls");
|
openSample("47251.xls");
|
||||||
|
|
||||||
// Now with one that triggers on NoteRecord
|
// Now with one that triggers on NoteRecord
|
||||||
// TODO Fix the bug and enable this bit of the test
|
openSample("47251_1.xls");
|
||||||
//openSample("47251_1.xls");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user