aboutsummaryrefslogtreecommitdiffstats
path: root/poi-scratchpad
diff options
context:
space:
mode:
authorPJ Fanning <fanningpj@apache.org>2022-03-22 14:58:47 +0000
committerPJ Fanning <fanningpj@apache.org>2022-03-22 14:58:47 +0000
commita1463e32e568dd51389534ff8a036c8b398d95e6 (patch)
tree748186fa9a9d24dc0ec2292b091523aaf9533d4e /poi-scratchpad
parent0bc81c57fde45c47251930474458fe941841f190 (diff)
downloadpoi-a1463e32e568dd51389534ff8a036c8b398d95e6.tar.gz
poi-a1463e32e568dd51389534ff8a036c8b398d95e6.zip
increase max size of hwmf picture
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1899135 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-scratchpad')
-rw-r--r--poi-scratchpad/src/main/java/org/apache/poi/hwmf/usermodel/HwmfPicture.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/poi-scratchpad/src/main/java/org/apache/poi/hwmf/usermodel/HwmfPicture.java b/poi-scratchpad/src/main/java/org/apache/poi/hwmf/usermodel/HwmfPicture.java
index 89ccb35395..0ac072ddd2 100644
--- a/poi-scratchpad/src/main/java/org/apache/poi/hwmf/usermodel/HwmfPicture.java
+++ b/poi-scratchpad/src/main/java/org/apache/poi/hwmf/usermodel/HwmfPicture.java
@@ -55,7 +55,7 @@ import org.apache.poi.util.Units;
public class HwmfPicture implements Iterable<HwmfRecord>, GenericRecord {
/** Max. record length - processing longer records will throw an exception */
- public static final int DEFAULT_MAX_RECORD_LENGTH = 50_000_000;
+ public static final int DEFAULT_MAX_RECORD_LENGTH = 100_000_000;
public static int MAX_RECORD_LENGTH = DEFAULT_MAX_RECORD_LENGTH;
private static final Logger LOG = LogManager.getLogger(HwmfPicture.class);