Sign in
◑
Theme
chromium
/
external
/
github.com
/
v8
/
node
/
refs/heads/node-ci-2022-10-21
/
.
/
test
/
fuzzers
/
fuzz_url.cc
blob: 16c5f644893f86cfc94d40a9a56992c9a225af05 [
file
] [
edit
]
#include
<stdlib.h>
#include
"node.h"
#include
"node_internals.h"
#include
"node_url.h"
extern
"C"
int
LLVMFuzzerTestOneInput
(
const
uint8_t
*
data
,
size_t
size
)
{
node
::
url
::
URL url2
(
reinterpret_cast
<
const
char
*>(
data
),
size
);
return
0
;
}