mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-05-14 18:03:11 +02: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);
|
LLVMFuzzerTestOneInput (buf, len);
|
||||||
|
|
||||||
free (buf);
|
free (buf);
|
||||||
|
fclose (f);
|
||||||
printf ("Done!\n");
|
printf ("Done!\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user