mirror of
https://github.com/apache/poi.git
synced 2025-03-06 17:09:08 +00:00
test issue
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1903555 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b8cd360300
commit
114f8b8fde
@ -47,10 +47,10 @@ public abstract class ChunkHeader {
|
||||
} else {
|
||||
ch = new ChunkHeaderV6();
|
||||
}
|
||||
ch.setType(Math.toIntExact(LittleEndian.getUInt(data, offset)));
|
||||
ch.setId(Math.toIntExact(LittleEndian.getUInt(data, offset + 4)));
|
||||
ch.setUnknown1(Math.toIntExact(LittleEndian.getUInt(data, offset + 8)));
|
||||
ch.setLength(Math.toIntExact(LittleEndian.getUInt(data, offset + 12)));
|
||||
ch.setType((int) LittleEndian.getUInt(data, offset));
|
||||
ch.setId((int) LittleEndian.getUInt(data, offset + 4));
|
||||
ch.setUnknown1((int) LittleEndian.getUInt(data, offset + 8));
|
||||
ch.setLength((int) LittleEndian.getUInt(data, offset + 12));
|
||||
ch.setUnknown2(LittleEndian.getShort(data, offset + 16));
|
||||
ch.setUnknown3(LittleEndian.getUByte(data, offset + 18));
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user