mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 00:07:36 +00:00
Fuzzers: Use correct type name in FuzzilliJs fuzzer
This commit is contained in:
parent
38a3e28799
commit
958f9e960d
1 changed files with 1 additions and 1 deletions
|
@ -211,7 +211,7 @@ int main(int, char**)
|
||||||
auto js = StringView(static_cast<unsigned char const*>(data_buffer.data()), script_size);
|
auto js = StringView(static_cast<unsigned char const*>(data_buffer.data()), script_size);
|
||||||
|
|
||||||
// FIXME: https://github.com/SerenityOS/serenity/issues/17899
|
// FIXME: https://github.com/SerenityOS/serenity/issues/17899
|
||||||
if (!UTF8View(js).validate()) {
|
if (!Utf8View(js).validate()) {
|
||||||
result = 1;
|
result = 1;
|
||||||
} else {
|
} else {
|
||||||
auto parse_result = JS::Script::parse(js, interpreter->realm());
|
auto parse_result = JS::Script::parse(js, interpreter->realm());
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue