diff options
author | Tim Schumacher <timschumi@gmx.de> | 2023-01-03 22:59:40 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-01-03 23:26:45 +0100 |
commit | 77ea609cd3409a18dcfb4fadac907c36e22dc8f5 (patch) | |
tree | d7c9064e3c52775e0e391364874927b4793da8a0 /Meta | |
parent | c7ab6daf261f527b03a2904e5f41f5951f32381b (diff) | |
download | serenity-77ea609cd3409a18dcfb4fadac907c36e22dc8f5.zip |
Lagom: Fix up a missed usage of `Compress::Zlib` in the fuzzers
Diffstat (limited to 'Meta')
-rw-r--r-- | Meta/Lagom/Fuzzers/FuzzZlibDecompression.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Meta/Lagom/Fuzzers/FuzzZlibDecompression.cpp b/Meta/Lagom/Fuzzers/FuzzZlibDecompression.cpp index e71098494c..064d0ec2d7 100644 --- a/Meta/Lagom/Fuzzers/FuzzZlibDecompression.cpp +++ b/Meta/Lagom/Fuzzers/FuzzZlibDecompression.cpp @@ -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; } |