summaryrefslogtreecommitdiff
path: root/src/com/github/junrar/unpack
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-10-19 11:55:44 +0400
committerAndrew Dolgov <[email protected]>2012-10-19 11:55:44 +0400
commit7b2c2700c7a76bf34eff76fbc984479c6555f65c (patch)
tree41ad7d9bd221965f049afa7dc77b905f8fd0d689 /src/com/github/junrar/unpack
parenta138ee85ec9282d283154b961e8d134be8aefa03 (diff)
reduce junrar unpack window
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 bb96dad..114986a 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 = 0x100000;
+ public static final int MAXWINSIZE = 0x10000;
public static final int MAXWINMASK = (MAXWINSIZE-1);
public static final int LOW_DIST_REP_COUNT = 16;