diff options
author | Tim Allison <tallison@apache.org> | 2020-08-13 18:56:39 +0000 |
---|---|---|
committer | Tim Allison <tallison@apache.org> | 2020-08-13 18:56:39 +0000 |
commit | 4bf968d6bd96d51347380f3127e64dbb525c664d (patch) | |
tree | ab90aca7d473baee291625db0b668569756bad36 /src/scratchpad | |
parent | ab2dc71a955d72faae3a0cd8df2ca89c1eaf9015 (diff) | |
download | poi-4bf968d6bd96d51347380f3127e64dbb525c664d.tar.gz poi-4bf968d6bd96d51347380f3127e64dbb525c664d.zip |
Bug 64659 -- bump max record length
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1880835 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/scratchpad')
-rw-r--r-- | src/scratchpad/src/org/apache/poi/hmef/attribute/MAPIRtfAttribute.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scratchpad/src/org/apache/poi/hmef/attribute/MAPIRtfAttribute.java b/src/scratchpad/src/org/apache/poi/hmef/attribute/MAPIRtfAttribute.java index c5d1cec826..295a022db8 100644 --- a/src/scratchpad/src/org/apache/poi/hmef/attribute/MAPIRtfAttribute.java +++ b/src/scratchpad/src/org/apache/poi/hmef/attribute/MAPIRtfAttribute.java @@ -34,7 +34,7 @@ import org.apache.poi.util.StringUtil; public final class MAPIRtfAttribute extends MAPIAttribute { //arbitrarily selected; may need to increase - private static final int MAX_RECORD_LENGTH = 1_000_000; + private static final int MAX_RECORD_LENGTH = 50_000_000; private final byte[] decompressed; private final String data; |