Lagom: Fix up a missed usage of Compress::Zlib in the fuzzers

This commit is contained in:
Tim Schumacher 2023-01-03 22:59:40 +01:00 committed by Linus Groh
parent c7ab6daf26
commit 77ea609cd3
Notes: sideshowbarker 2024-07-17 06:29:49 +09:00

View file

@ -9,6 +9,6 @@
extern "C" int LLVMFuzzerTestOneInput(uint8_t const* data, size_t size)
{
(void)Compress::Zlib::decompress_all(ReadonlyBytes { data, size });
(void)Compress::ZlibDecompressor::decompress_all(ReadonlyBytes { data, size });
return 0;
}