summaryrefslogtreecommitdiff
path: root/src/com/github/junrar/unpack
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-10-19 11:47:12 +0400
committerAndrew Dolgov <[email protected]>2012-10-19 11:47:12 +0400
commita138ee85ec9282d283154b961e8d134be8aefa03 (patch)
tree3d183a2ad12bc78aecc4909df433ecda78f5c1dd /src/com/github/junrar/unpack
parentba8ec0fd58477e2c63fd34d864bac59054171435 (diff)
add largeHeap=true
Diffstat (limited to 'src/com/github/junrar/unpack')
-rw-r--r--src/com/github/junrar/unpack/decode/Compress.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/github/junrar/unpack/decode/Compress.java b/src/com/github/junrar/unpack/decode/Compress.java
index 12bf342..bb96dad 100644
--- a/src/com/github/junrar/unpack/decode/Compress.java
+++ b/src/com/github/junrar/unpack/decode/Compress.java
@@ -25,7 +25,7 @@ package com.github.junrar.unpack.decode;
*/
public class Compress {
public static final int CODEBUFSIZE = 0x4000;
- public static final int MAXWINSIZE = 0x400000;
+ public static final int MAXWINSIZE = 0x100000;
public static final int MAXWINMASK = (MAXWINSIZE-1);
public static final int LOW_DIST_REP_COUNT = 16;