2020-11-29 20:52:19 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-11-29 20:52:19 -03:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <AK/URL.h>
|
|
|
|
|
|
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
|
|
|
|
|
{
|
|
|
|
|
auto string_view = StringView(data, size);
|
|
|
|
|
auto url = URL(string_view);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|