mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 08:17:45 +00:00
Lagom: Fix up a missed usage of Compress::Zlib
in the fuzzers
This commit is contained in:
parent
c7ab6daf26
commit
77ea609cd3
1 changed files with 1 additions and 1 deletions
|
@ -9,6 +9,6 @@
|
||||||
|
|
||||||
extern "C" int LLVMFuzzerTestOneInput(uint8_t const* data, size_t size)
|
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;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue