Fix typo in fuzz test

This commit is contained in:
cpq 2020-12-24 09:09:25 +00:00
parent 9f5216d259
commit 9657577c00

View File

@ -35,7 +35,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
mg_base64_encode(data, size, buf);
mg_base64_encode(NULL, 0, buf);
char *hexdump = mg_hexdump(data, len);
char *hexdump = mg_hexdump(data, size);
free(hexdump);
mg_globmatch((char *) data, size, (char *) data, size);