Commit 0604dbad authored by Federico G. Schwindt's avatar Federico G. Schwindt

Fix previous

parent 3e57151e
......@@ -107,14 +107,14 @@ LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
int
main(int argc, char **argv)
{
size_t len;
ssize_t len;
char *buf;
int i;
for (i = 1; i < argc; i++) {
buf = VFIL_readfile(NULL, argv[i], &len);
AN(buf);
LLVMFuzzerTestOneInput(buf, len);
LLVMFuzzerTestOneInput((uint8_t *)buf, len);
free(buf);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment