CLI : corrected : small allocation error in case of not compressible input
git-svn-id: https://lz4.googlecode.com/svn/trunk@21 650e7d94-2a16-8b24-b05c-7c0b3f6821cd
This commit is contained in:
parent
d5a574c351
commit
e154e125fc
2
main.c
2
main.c
@ -72,7 +72,7 @@
|
|||||||
|
|
||||||
#define CHUNKSIZE (8<<20) // 8 MB
|
#define CHUNKSIZE (8<<20) // 8 MB
|
||||||
#define CACHELINE 64
|
#define CACHELINE 64
|
||||||
#define OUT_CHUNKSIZE (CHUNKSIZE + (CHUNKSIZE>>8) + CACHELINE)
|
#define OUT_CHUNKSIZE (CHUNKSIZE + (CHUNKSIZE/255) + CACHELINE)
|
||||||
#define ARCHIVE_MAGICNUMBER 0x184C2102
|
#define ARCHIVE_MAGICNUMBER 0x184C2102
|
||||||
#define ARCHIVE_MAGICNUMBER_SIZE 4
|
#define ARCHIVE_MAGICNUMBER_SIZE 4
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user