mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
Fuzzers: Cast unused smart-pointer return values to void
This commit is contained in:
committed by
Andreas Kling
parent
f3d8f80e9c
commit
16e5f24e64
@@ -13,6 +13,6 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
|
||||
{
|
||||
auto source = StringView(static_cast<const unsigned char*>(data), size);
|
||||
Shell::Parser parser(source);
|
||||
parser.parse();
|
||||
(void)parser.parse();
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user