mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Lagom: Fix up a missed usage of Compress::Zlib
in the fuzzers
This commit is contained in:
parent
c7ab6daf26
commit
77ea609cd3
Notes:
sideshowbarker
2024-07-17 06:29:49 +09:00
Author: https://github.com/timschumi Commit: https://github.com/SerenityOS/serenity/commit/77ea609cd3 Pull-request: https://github.com/SerenityOS/serenity/pull/16803
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue