Fix small file leak in fuzzing driver

This doesn't matter as the file is needed until right before the program
quits, but it placates Coverity.
This commit is contained in:
Michael Catanzaro 2021-03-31 11:43:42 -05:00
parent 32fc1e6bbf
commit e2f2706539

View File

@ -30,6 +30,7 @@ main (int argc, char **argv)
LLVMFuzzerTestOneInput (buf, len);
free (buf);
fclose (f);
printf ("Done!\n");
return 0;
}