aboutsummaryrefslogtreecommitdiff
path: root/tests/fuzz/zstd_frame_info.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/fuzz/zstd_frame_info.c')
-rw-r--r--tests/fuzz/zstd_frame_info.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/fuzz/zstd_frame_info.c b/tests/fuzz/zstd_frame_info.c
index 7512d5f493b4..359cf128f5b8 100644
--- a/tests/fuzz/zstd_frame_info.c
+++ b/tests/fuzz/zstd_frame_info.c
@@ -21,10 +21,6 @@
int LLVMFuzzerTestOneInput(const uint8_t *src, size_t size)
{
ZSTD_frameHeader zfh;
- /* Consume the seed to be compatible with the corpora of other decompression
- * fuzzers.
- */
- FUZZ_seed(&src, &size);
/* You can fuzz any helper functions here that are fast, and take zstd
* compressed data as input. E.g. don't expect the input to be a dictionary,
* so don't fuzz ZSTD_getDictID_fromDict().