Call release_input_file only if file is claimed

* lto-plugin.c (claim_file_handler): Call release_input_file only
	if file is claimed.

From-SVN: r220455
This commit is contained in:
H.J. Lu 2015-02-05 16:40:44 +00:00 committed by H.J. Lu
parent c7d22ee76f
commit 06fa4f005f
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2015-02-05 H.J. Lu <hongjiu.lu@intel.com>
* lto-plugin.c (claim_file_handler): Call release_input_file only
if file is claimed.
2015-01-28 H.J. Lu <hongjiu.lu@intel.com>
* lto-plugin.c (claim_file_handler): Call release_input_file only

View File

@ -998,6 +998,9 @@ claim_file_handler (const struct ld_plugin_input_file *file, int *claimed)
*claimed = 1;
if (release_input_file)
release_input_file (file);
goto cleanup;
err:
@ -1007,9 +1010,6 @@ claim_file_handler (const struct ld_plugin_input_file *file, int *claimed)
if (obj.objfile)
simple_object_release_read (obj.objfile);
if (release_input_file)
release_input_file (file);
return LDPS_OK;
}