gcc/jit/ChangeLog:
* jit-playback.c (gcc::jit::playback::context::read_dump_file):
Add missing fclose on error-handling path.
From-SVN: r219487
+2015-01-12 David Malcolm <dmalcolm@redhat.com>
+
+ * jit-playback.c (gcc::jit::playback::context::read_dump_file):
+ Add missing fclose on error-handling path.
+
2015-01-12 David Malcolm <dmalcolm@redhat.com>
* docs/cp/topics/expressions.rst (Global variables): Add
{
add_error (NULL, "error reading from %s", path);
free (result);
+ fclose (f_in);
return NULL;
}