mirror of https://github.com/apache/poi.git
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
c2edd459c7
commit
2bfef69f37
|
@ -90,7 +90,11 @@ public final class NoteRecord extends StandardRecord {
|
|||
}
|
||||
if (in.available() == 1) {
|
||||
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();
|
||||
}
|
||||
}
|
||||
|
||||
public void serialize(LittleEndianOutput out) {
|
||||
|
|
|
@ -1651,8 +1651,7 @@ public final class TestBugs extends BaseTestBugzillaIssues {
|
|||
openSample("47251.xls");
|
||||
|
||||
// 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