- Dec 18, 2018
-
-
Nick Terrell authored
* Fix `ZSTD_estimateCCtxSize()` with negative levels. * Fix `ZSTD_estimateCStreamSize()` with negative levels. * Add a unit test to test for this error.
-
Yann Collet authored
overlapLog default values
-
Yann Collet authored
Add multiple_simple_compression.c (demonstrates the use of ZSTD_compressCCtx(...)) to examples directory.
-
Yi Jin authored
break loadFile_orDie() into 2: loadFile_orDie() loads file into a pre-allocated memory buffer, mallocAndLoadFile_orDie() allocates memory first, then calls loadFile_orDie()
-
- Dec 17, 2018
- Dec 16, 2018
-
-
Yi Jin authored
Factor out allocMemory_orDIe(...) in simple_compressionCCtx.c, and amend Makefile to account for dependency on utils.h
-
- Dec 15, 2018
-
-
Yi Jin authored
-
Yi Jin authored
-
Yann Collet authored
meson: Remove unused sys import
-
- Dec 14, 2018
-
-
Nick Terrell authored
[zstdcli] Add --no-progress flag
-
Nick Terrell authored
The `--no-progress` flag disables zstd's progress bars, but leaves the summary. I've added simple tests to `playTests.sh` to make sure the parsing works.
-
Yann Collet authored
meson: More accurate Windows build support
-
Yi Jin authored
-
Lzu Tao authored
-
Yann Collet authored
with correct pointer type
-
Yann Collet authored
-
Nick Terrell authored
[libzstd] Fix infinite loop in decompression
-
- Dec 13, 2018
-
-
Yann Collet authored
-
Yi Jin authored
-
Nick Terrell authored
When we switched `ZSTD_SKIPPABLEHEADERSIZE` to a macro, the places where we do: MEM_readLE32(ptr) + ZSTD_SKIPPABLEHEADERSIZE can now overflow `(unsigned)-8` to `0` and we infinite loop. We now check the frame size and reject sizes that overflow a U32. Note that this bug never made it into a release, and was only in the dev branch for a few days. Credit to OSS-Fuzz
-
Yann Collet authored
from 64-bit to 32-bit
-
Yann Collet authored
travis: Use script instead of Cmd env
-
Lzu Tao authored
-
Lzu Tao authored
-
Lzu Tao authored
-
Lzu Tao authored
-
Lzu Tao authored
Let soversion base on version if not set. For example, if version is 3.6.0 and soversion is not defined, it is set to 3.
-
Lzu Tao authored
Use MESON_INSTALL_DESTDIR_PREFIX variable instead of DESTDIR.
-
Yann Collet authored
and updated man page
-
Yann Collet authored
btultra2
-
Yann Collet authored
-
Yann Collet authored
and fixed nit
-
Yann Collet authored
-
- Dec 12, 2018
-
-
Nick Terrell authored
[regression] add more methods
-
Yann Collet authored
CLI used to set overlapLog at value 9 when level == 22. This is no longer necessary (handled internally within library)
-
Yann Collet authored
varies between 6 and 9, depending on strategy
-
Yann Collet authored
in deeper code layer. for consistency.
-