Skip to content

Commit

Permalink
Update lz4 to 1.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
odaira committed Sep 25, 2019
1 parent dfc0cf9 commit d43546e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lz4
Submodule lz4 updated 50 files
+5 −38 .circleci/config.yml
+12 −0 .circleci/images/primary/Dockerfile
+40 −15 .travis.yml
+9 −4 Makefile
+1 −0 contrib/cmake_unofficial/CMakeLists.txt
+1 −1 contrib/meson/README.md
+1 −0 contrib/meson/contrib/gen_manual/meson.build
+13 −16 contrib/meson/meson.build
+4 −4 contrib/meson/meson_options.txt
+90 −24 doc/lz4_manual.html
+2 −2 doc/lz4frame_manual.html
+6 −3 examples/HCStreaming_ringBuffer.c
+3 −3 examples/blockStreaming_doubleBuffer.md
+28 −22 examples/simple_buffer.c
+2 −3 lib/Makefile
+3 −5 lib/README.md
+262 −163 lib/lz4.c
+112 −30 lib/lz4.h
+25 −3 lib/lz4frame.c
+9 −0 lib/lz4frame.h
+91 −29 lib/lz4hc.c
+3 −0 lib/lz4hc.h
+74 −0 ossfuzz/Makefile
+42 −0 ossfuzz/compress_frame_fuzzer.c
+51 −0 ossfuzz/compress_fuzzer.c
+57 −0 ossfuzz/compress_hc_fuzzer.c
+67 −0 ossfuzz/decompress_frame_fuzzer.c
+58 −0 ossfuzz/decompress_fuzzer.c
+48 −0 ossfuzz/fuzz.h
+94 −0 ossfuzz/fuzz_helpers.h
+51 −0 ossfuzz/lz4_helpers.c
+13 −0 ossfuzz/lz4_helpers.h
+23 −0 ossfuzz/ossfuzz.sh
+39 −0 ossfuzz/round_trip_frame_fuzzer.c
+50 −0 ossfuzz/round_trip_fuzzer.c
+39 −0 ossfuzz/round_trip_hc_fuzzer.c
+302 −0 ossfuzz/round_trip_stream_fuzzer.c
+74 −0 ossfuzz/standaloneengine.c
+21 −0 ossfuzz/travisoss.sh
+5 −1 programs/lz4.1
+3 −0 programs/lz4.1.md
+31 −12 programs/lz4cli.c
+300 −99 programs/lz4io.c
+2 −0 programs/lz4io.h
+1 −0 tests/.gitignore
+17 −11 tests/Makefile
+204 −93 tests/frametest.c
+73 −24 tests/fullbench.c
+208 −113 tests/fuzzer.c
+282 −0 tests/test-lz4-list.py

0 comments on commit d43546e

Please sign in to comment.