mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 18:17:44 +00:00
LibCompress: Let BrotliDecompressionStream
take a MaybeOwned
This commit is contained in:
parent
8a853278d0
commit
dbc25f18ec
6 changed files with 8 additions and 8 deletions
|
@ -12,7 +12,7 @@ extern "C" int LLVMFuzzerTestOneInput(uint8_t const* data, size_t size)
|
|||
{
|
||||
FixedMemoryStream bufstream { { data, size } };
|
||||
|
||||
auto brotli_stream = Compress::BrotliDecompressionStream { bufstream };
|
||||
auto brotli_stream = Compress::BrotliDecompressionStream { MaybeOwned<Stream> { bufstream } };
|
||||
|
||||
(void)brotli_stream.read_until_eof();
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue