mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-12 15:36:17 +01:00
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:
parent
32fc1e6bbf
commit
e2f2706539
@ -30,6 +30,7 @@ main (int argc, char **argv)
|
||||
LLVMFuzzerTestOneInput (buf, len);
|
||||
|
||||
free (buf);
|
||||
fclose (f);
|
||||
printf ("Done!\n");
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user