From c7bcd70d54e32c2bb671c579df78eadd1f3ed50d Mon Sep 17 00:00:00 2001 From: Tim Allison Date: Wed, 10 Jul 2019 20:02:59 +0000 Subject: [PATCH] Bug 63542 -- bump min record limit for TNEFAttribute git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1862895 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/org/apache/poi/hmef/attribute/TNEFAttribute.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scratchpad/src/org/apache/poi/hmef/attribute/TNEFAttribute.java b/src/scratchpad/src/org/apache/poi/hmef/attribute/TNEFAttribute.java index 11e865364d..547bad8e11 100644 --- a/src/scratchpad/src/org/apache/poi/hmef/attribute/TNEFAttribute.java +++ b/src/scratchpad/src/org/apache/poi/hmef/attribute/TNEFAttribute.java @@ -35,7 +35,7 @@ import org.apache.poi.util.LittleEndian; public class TNEFAttribute { //arbitrarily selected; may need to increase - private static final int MAX_RECORD_LENGTH = 1_000_000; + private static final int MAX_RECORD_LENGTH = 20_000_000; private final TNEFProperty property; private final int type; -- 2.39.5