aboutsummaryrefslogtreecommitdiff
path: root/lto-plugin
diff options
context:
space:
mode:
authorH.J. Lu <hongjiu.lu@intel.com>2015-02-05 20:56:14 +0000
committerH.J. Lu <hjl@gcc.gnu.org>2015-02-05 12:56:14 -0800
commit11c17039dd328319f177cac2662f8d5941d63354 (patch)
tree79a1b0c486be9126d1f7b99faefe9c4bf599e9db /lto-plugin
parent370a7814fcfa84017eb844b99607517855a9d280 (diff)
Pass handle to release_input_file
* lto-plugin.c (claim_file_handler): Pass handle to release_input_file. From-SVN: r220461
Diffstat (limited to 'lto-plugin')
-rw-r--r--lto-plugin/ChangeLog5
-rw-r--r--lto-plugin/lto-plugin.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/lto-plugin/ChangeLog b/lto-plugin/ChangeLog
index 510e7385884..82d62ae2564 100644
--- a/lto-plugin/ChangeLog
+++ b/lto-plugin/ChangeLog
@@ -1,5 +1,10 @@
2015-02-05 H.J. Lu <hongjiu.lu@intel.com>
+ * lto-plugin.c (claim_file_handler): Pass handle to
+ release_input_file.
+
+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.
diff --git a/lto-plugin/lto-plugin.c b/lto-plugin/lto-plugin.c
index e25bbf9c44e..44d0e3043b5 100644
--- a/lto-plugin/lto-plugin.c
+++ b/lto-plugin/lto-plugin.c
@@ -999,7 +999,7 @@ claim_file_handler (const struct ld_plugin_input_file *file, int *claimed)
*claimed = 1;
if (release_input_file)
- release_input_file (file);
+ release_input_file (file->handle);
goto cleanup;