1. 6f5fe71 added error check for when file could not be opened by Paul Cruz · 7 years ago
  2. 74a725d reversed calculation of ratio by Paul Cruz · 7 years ago
  3. 8309597 free cdictLocal faster, suggested by @terrelln by Yann Collet · 7 years ago
  4. c16748b added test cases for new command --list by Yann Collet · 7 years ago
  5. 7bd1a29 added ZSTD_dictMode_e to control dictionary loading mode by Yann Collet · 7 years ago
  6. 9c56b12 Merge pull request #723 from paulcruz74/dev by Yann Collet · 7 years ago
  7. e51d51b fixed memcpy() overlap by Yann Collet · 7 years ago
  8. db3606e added test for files with no frame content size by Paul Cruz · 7 years ago
  9. 466f92e removed one useless streaming compression stage, detected by @terrelln by Yann Collet · 7 years ago
  10. c3bce24 fixed potential dangling pointer, detected by @terrelln by Yann Collet · 7 years ago
  11. acf0df6 fixed strange spacing by Paul Cruz · 7 years ago
  12. 69bc4fa free the context object once done with decompression by Paul Cruz · 7 years ago
  13. ceb4f65 allocate statically so we don't have to deal with freeing by Paul Cruz · 7 years ago
  14. a73c2a4 added tests with null files, changed condition to check that the file is more than 0 bytes by Paul Cruz · 7 years ago
  15. 78b8234 fixed comments, following suggestion by @terrelln by Yann Collet · 7 years ago
  16. 58c19b4 spacing matters for test scripts by Paul Cruz · 7 years ago
  17. b44ab82 ensure new ZSTD_strategy starts at value 1 by Yann Collet · 7 years ago
  18. 0765602 fixed error where extremely small files were not being detected as not compressed with zstd by Paul Cruz · 7 years ago
  19. 3701dde changed to use LONG_SEEK by Paul Cruz · 7 years ago
  20. 93a5510 added progress metric to display by Paul Cruz · 7 years ago
  21. bda5775 moved signifcant operations to fileio.c by Paul Cruz · 7 years ago
  22. ff8f83b fixed fuzzer test by Yann Collet · 7 years ago
  23. 983e16a Merge pull request #728 from terrelln/ubsan-failure by Yann Collet · 7 years ago
  24. c594507 removed double if statements for same condition by Paul Cruz · 7 years ago
  25. 72e0ac9 minor update to logic by Paul Cruz · 7 years ago
  26. cea55a9 size_t const value by Paul Cruz · 7 years ago
  27. b07d0af added additional tests for error detection by Paul Cruz · 7 years ago
  28. bed0dc9 changed displayInfo alignment and const by Paul Cruz · 7 years ago
  29. 43ffcdd const dictOffset by Paul Cruz · 7 years ago
  30. 1e0d125 const value by Paul Cruz · 7 years ago
  31. 0034129 made changes to accommodate single file use case by Paul Cruz · 7 years ago
  32. 6a99de2 change test to list info on .zst files by Paul Cruz · 7 years ago
  33. 36e14b1 added description to advanced usage, changed to use-dict by Paul Cruz · 7 years ago
  34. 1510206 removed testing code from generation code by Paul Cruz · 7 years ago
  35. ff5589c added comments for clarity by Paul Cruz · 7 years ago
  36. 551fb7c changed error condition by Paul Cruz · 7 years ago
  37. b8237c6 refactoring for readability by Paul Cruz · 7 years ago
  38. 6f17de2 changed computation for readability by Paul Cruz · 7 years ago
  39. cb2dbe6 changed fileInfo initialization, updated error code by Paul Cruz · 7 years ago
  40. 631d366 [linux] Add xxhash and zstd in-kernel tests by Nick Terrell · 7 years ago
  41. e7093ca [linux] Add libfuzzer targets by Nick Terrell · 7 years ago
  42. c08e649 first implementation of bench.c with new API ZSTD_compress_generic() by Yann Collet · 7 years ago
  43. 4a4f9ba const value that doesn't change by Paul Cruz · 7 years ago
  44. 008d44a fix attempt : fullbench VS2008 project by Yann Collet · 7 years ago
  45. 3a6856e changed scope to avoid errors by Paul Cruz · 7 years ago
  46. 7d2b561 adhere to min dict size by Paul Cruz · 7 years ago
  47. ea2af1f changed dictionary to stay reasonable size during test by Paul Cruz · 7 years ago
  48. fdbb072 added test to runTestMode by Paul Cruz · 7 years ago
  49. bdec7b8 fixed for loop declaration, fixed test case by Paul Cruz · 7 years ago
  50. 23098b5 wrote a test for dictionary corpus by Paul Cruz · 7 years ago
  51. 7a26390 changing for loop declaration by Paul Cruz · 7 years ago
  52. 147ef05 for loop declaration not allowed by Paul Cruz · 7 years ago
  53. 791352a scope change by Paul Cruz · 7 years ago
  54. 365e265 changed scope so that warning disappears by Paul Cruz · 7 years ago
  55. f4f9285 changed scope to get rid of mixed code/variables warning by Paul Cruz · 7 years ago
  56. 7ea025c added in struct to keep functions more orderly by Paul Cruz · 7 years ago
  57. b91b810 made some small changes to dictInfo struct and initDictInfo by Paul Cruz · 7 years ago
  58. 1ee4f6b cleaning up code by Paul Cruz · 7 years ago
  59. a48e129 [linux] Port libzstd UBSAN fix by Nick Terrell · 7 years ago
  60. 405751a Merge pull request #727 from terrelln/ubsan-failure by Yann Collet · 7 years ago
  61. 695a0a3 fixed IA64 compilation error, by @mcmilk by Yann Collet · 7 years ago
  62. fe234bf fix attempts : fullbench for VS2008 by Yann Collet · 7 years ago
  63. 55f9cd4 [libzstd] Fix UBSAN failure by Nick Terrell · 7 years ago
  64. 2a52d72 added comment to anotate decompressed error code by Paul Cruz · 7 years ago
  65. 73ebb64 small stylistic changes by Paul Cruz · 7 years ago
  66. e11a5e4 Merge pull request #726 from terrelln/malloc-failure by Yann Collet · 7 years ago
  67. 34f4e5c changed if statement styling by Paul Cruz · 7 years ago
  68. 1fc1a35 added calls to free to match calls to malloc, made some stylistic changes, added init function for new struct by Paul Cruz · 7 years ago
  69. 8f4fa43 got files to decompress by Paul Cruz · 7 years ago
  70. bf99150 update new api presentation in zstd.h and manual by Yann Collet · 7 years ago
  71. 9ad11be [linux] Fix decompression memory allocation by Nick Terrell · 7 years ago
  72. c7dcf0f updated manual by Yann Collet · 7 years ago
  73. 6889520 minor declaration statement warning fix by Yann Collet · 7 years ago
  74. d7a3bff new api : setting compression parameters is refused if a dictionary is already loaded by Yann Collet · 7 years ago
  75. da4ddc1 fixed decompression so that it uses compressed version by Paul Cruz · 7 years ago
  76. 33467ad made changes so that HUF_writeCTable no longer fails by Paul Cruz · 7 years ago
  77. ed1d039 newapi fuzzer tests : random flush orders in main loop by Yann Collet · 7 years ago
  78. 55b9b28 made style changes, added description in man file by Paul Cruz · 7 years ago
  79. 09ac51b small style changes by Paul Cruz · 7 years ago
  80. f5deae8 new api fuzzer tests : frame parameters are randonly set by Yann Collet · 7 years ago
  81. ea3630a new api fuzzer set : dictionary is randomly set by Yann Collet · 7 years ago
  82. 8dee0ec new api fuzzer tests : compression parameters are randomly set by Yann Collet · 7 years ago
  83. bc4e1fd Merge pull request #724 from yurivict/fix-install-static-lib by Yann Collet · 7 years ago
  84. 92bafda INSTALL_DATA instead of INSTALL_LIB for libzstd.a by Yuri · 7 years ago
  85. bd05b19 removed macro CLAMP from decodecorpus by Yann Collet · 7 years ago
  86. 01743a3 fuzzer tests for new API by Yann Collet · 7 years ago
  87. 381e66c added ZSTD_clampCParams() by Yann Collet · 7 years ago
  88. aee916e fixed +/-1 error for pledgedSrcSizePlusOne by Yann Collet · 7 years ago
  89. d3de3d5 fix attempt 2 : Visual sign conversion warning by Yann Collet · 7 years ago
  90. 944be54 fixed attempt : minor Visual sign conversion warning by Yann Collet · 7 years ago
  91. b26728c added ZSTD_startNewCompression() by Yann Collet · 7 years ago
  92. a0ba849 changed frameContentSize field to pledgedSrcSizePlusOne by Yann Collet · 7 years ago
  93. 2cf7755 fix : pledgedSrcSize correctly reset to unknown in "continue" mode by Yann Collet · 7 years ago
  94. 9e73f2f fix : correctly reset pledgedSrcSize to unknown status by Yann Collet · 7 years ago
  95. 33873f0 fixed : new advanced AIP : setting nbThreads to the same value > 1 by Yann Collet · 7 years ago
  96. 559ee82 fixed : calling ZSTD_compress_generic() to end-flush a stream in multiple steps by Yann Collet · 7 years ago
  97. bd18c88 added ZSTD_CCtx_reset by Yann Collet · 7 years ago
  98. cc9f9b7 protection : ZSTD_CONTENTSIZE_UNKNOWN automatically disables contentSizeFlag by Yann Collet · 7 years ago
  99. e3609ee Merge branch 'list' into dev by Paul Cruz · 7 years ago
  100. 4a0e4c8 fixing more spacing on loops by Paul Cruz · 7 years ago