Skip to content

Commit a348681

Browse files
committed
increased limition of element sizes of unpacked array and map objects
1 parent c8e6435 commit a348681

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/org/msgpack/unpacker/AbstractUnpacker.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
public abstract class AbstractUnpacker implements Unpacker {
2828
protected MessagePack msgpack;
2929

30-
protected int rawSizeLimit = 67108864;
30+
protected int rawSizeLimit = 134217728;
3131

32-
protected int arraySizeLimit = 4096;
32+
protected int arraySizeLimit = 65536;
3333

3434
protected int mapSizeLimit = 4096;
3535

0 commit comments

Comments
 (0)