]> source.dussan.org Git - poi.git/commitdiff
bumping minimum record length based on user feedback on tika-dev list
authorTim Allison <tallison@apache.org>
Thu, 10 Oct 2019 03:03:50 +0000 (03:03 +0000)
committerTim Allison <tallison@apache.org>
Thu, 10 Oct 2019 03:03:50 +0000 (03:03 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1868211 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/hpsf/Blob.java

index 47211feee03d0224be1ec5dded588069837ef9c3..6c6e17c6601ab84edff106d2bd199f5bdbd22dee 100644 (file)
@@ -24,7 +24,7 @@ import org.apache.poi.util.LittleEndianInput;
 public class Blob {
 
     //arbitrarily selected; may need to increase
-    private static final int MAX_RECORD_LENGTH = 1_000_000;
+    private static final int MAX_RECORD_LENGTH = 10_000_000;
 
     private byte[] _value;