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
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 11e8653..547bad8 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 @@
 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;