mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
Lagom/Fuzzers: Fix creation of ELF::Loader
This commit is contained in:
parent
2ba5a325d5
commit
b1e01066fe
Notes:
sideshowbarker
2024-07-19 00:49:46 +09:00
Author: https://github.com/itamar8910 Commit: https://github.com/SerenityOS/serenity/commit/b1e01066fea Pull-request: https://github.com/SerenityOS/serenity/pull/3738 Reviewed-by: https://github.com/ADKaster Reviewed-by: https://github.com/alimpfard Reviewed-by: https://github.com/awesomekling
1 changed files with 1 additions and 1 deletions
|
@ -30,6 +30,6 @@
|
|||
|
||||
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
|
||||
{
|
||||
ELF::Loader::create(data, size, /*verbose_logging=*/false);
|
||||
ELF::Loader::create(data, size, /*name=*/ {}, /*verbose_logging=*/false);
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue