diff options
author | Tim Allison <tallison@apache.org> | 2017-09-25 12:53:10 +0000 |
---|---|---|
committer | Tim Allison <tallison@apache.org> | 2017-09-25 12:53:10 +0000 |
commit | bf6cd20f10d6a6962ab5da483fea9c30aa80ea5b (patch) | |
tree | ff788b47282835bd90d25f4cdf515dc83d60ed50 /src/java/org/apache/poi/ddf | |
parent | 6e9fee0bc98f08f06b2265bc807968c12743058f (diff) | |
download | poi-bf6cd20f10d6a6962ab5da483fea9c30aa80ea5b.tar.gz poi-bf6cd20f10d6a6962ab5da483fea9c30aa80ea5b.zip |
Bug 61349 -- bump limits on classes that caused regressions in Dominik's regression corpus. Many thanks to Dominik Stadler for running the regression tests!!!
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1809623 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/poi/ddf')
-rw-r--r-- | src/java/org/apache/poi/ddf/EscherBlipRecord.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/org/apache/poi/ddf/EscherBlipRecord.java b/src/java/org/apache/poi/ddf/EscherBlipRecord.java index df49c4747e..f49f09f0e8 100644 --- a/src/java/org/apache/poi/ddf/EscherBlipRecord.java +++ b/src/java/org/apache/poi/ddf/EscherBlipRecord.java @@ -23,7 +23,7 @@ import org.apache.poi.util.LittleEndian; public class EscherBlipRecord extends EscherRecord { //arbitrarily selected; may need to increase - private static final int MAX_RECORD_LENGTH = 100_000_000; + private static final int MAX_RECORD_LENGTH = 104_857_600; public static final short RECORD_ID_START = (short) 0xF018; public static final short RECORD_ID_END = (short) 0xF117; |