mirror of https://github.com/apache/poi.git
bug 62597 -- bump max record length for ExOleObjStg based on regression corpus
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1838047 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1c4b3c24af
commit
e55cbeb987
|
@ -36,7 +36,7 @@ import org.apache.poi.util.LittleEndian;
|
||||||
public class ExOleObjStg extends PositionDependentRecordAtom implements PersistRecord {
|
public class ExOleObjStg extends PositionDependentRecordAtom implements PersistRecord {
|
||||||
|
|
||||||
//arbitrarily selected; may need to increase
|
//arbitrarily selected; may need to increase
|
||||||
private static final int MAX_RECORD_LENGTH = 20_000_000;
|
private static final int MAX_RECORD_LENGTH = 100_000_000;
|
||||||
|
|
||||||
private int _persistId; // Found from PersistPtrHolder
|
private int _persistId; // Found from PersistPtrHolder
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue