summaryrefslogtreecommitdiffstats
path: root/ossfuzz/compress_fuzzer.c
diff options
context:
space:
mode:
authorBimba Shrestha <bshrestha.msae@gmail.com>2019-09-14 01:08:58 (GMT)
committerBimba Shrestha <bshrestha.msae@gmail.com>2019-09-14 01:08:58 (GMT)
commit8edc5879d029459074a9c7bd9489dabf5b510bf6 (patch)
tree268103dc5f2eeda8e0ed6343d4e33b1249ca5613 /ossfuzz/compress_fuzzer.c
parent9cb73d69c4d92e255826dfee47e46a6815955ee4 (diff)
downloadlz4-8edc5879d029459074a9c7bd9489dabf5b510bf6.zip
lz4-8edc5879d029459074a9c7bd9489dabf5b510bf6.tar.gz
lz4-8edc5879d029459074a9c7bd9489dabf5b510bf6.tar.bz2
Retreiving 32 bits from the end for fuzzer
Diffstat (limited to 'ossfuzz/compress_fuzzer.c')
-rw-r--r--ossfuzz/compress_fuzzer.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/ossfuzz/compress_fuzzer.c b/ossfuzz/compress_fuzzer.c
index fac7dab..edc8aad 100644
--- a/ossfuzz/compress_fuzzer.c
+++ b/ossfuzz/compress_fuzzer.c
@@ -16,10 +16,11 @@
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
{
FUZZ_dataProducer_t *producer = FUZZ_dataProducer_create(data, size);
- size_t const dstCapacitySeed = FUZZ_dataProducer_uint32(producer, 0, LZ4_compressBound(size));
-
+ size_t const dstCapacitySeed = FUZZ_dataProducer_retrieve32(producer);
size = FUZZ_dataProducer_remainingBytes(producer);
- size_t const dstCapacity = FUZZ_getRange_from_uint32(dstCapacitySeed, 0, LZ4_compressBound(size));
+
+ size_t const compressBound = LZ4_compressBound(size);
+ size_t const dstCapacity = FUZZ_getRange_from_uint32(dstCapacitySeed, 0, compressBound);
char* const dst = (char*)malloc(dstCapacity);
char* const rt = (char*)malloc(size);