[fuzz] make the custom loader to handle multiple files

Actually this was the way it used to work :)
This commit is contained in:
Ebrahim Byagowi 2020-02-24 23:00:58 +03:30
parent 1f5a54c768
commit 96b71e802f
1 changed files with 12 additions and 15 deletions

View File

@ -1,28 +1,25 @@
#include "hb-fuzzer.hh"
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
int main (int argc, char **argv)
{
hb_blob_t *blob = hb_blob_create_from_file (argv[1]);
unsigned int len;
const char *font_data = hb_blob_get_data (blob, &len);
if (len == 0)
{
printf ("Font not found.\n");
exit (1);
}
for (int i = 1; i < argc; i++)
{
hb_blob_t *blob = hb_blob_create_from_file (argv[i]);
unsigned int len;
const char *font_data = hb_blob_get_data (blob, &len);
if (len == 0)
{
printf ("Font not found.\n");
return 1;
}
printf ("%s\n", argv[i]);
LLVMFuzzerTestOneInput ((const uint8_t *) font_data, len);
hb_blob_destroy (blob);
}
hb_blob_destroy (blob);
return 0;
}