From 380c25ea45bc727bba57e3f304c89242aa1cfd0d Mon Sep 17 00:00:00 2001
From: "H.J. Lu" <hongjiu.lu@intel.com>
Date: Wed, 28 Jan 2015 23:59:55 +0000
Subject: [PATCH] Call release_input_file only if not NULL

	* lto-plugin.c (claim_file_handler): Call release_input_file only
	if it is not NULL.

From-SVN: r220224
---
 lto-plugin/ChangeLog    | 5 +++++
 lto-plugin/lto-plugin.c | 3 ++-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/lto-plugin/ChangeLog b/lto-plugin/ChangeLog
index c0eae248cbd3..81752e73716f 100644
--- a/lto-plugin/ChangeLog
+++ b/lto-plugin/ChangeLog
@@ -1,3 +1,8 @@
+2015-01-28  H.J. Lu  <hongjiu.lu@intel.com>
+
+	* lto-plugin.c (claim_file_handler): Call release_input_file only
+	if it is not NULL.
+
 2015-01-28  H.J. Lu  <hongjiu.lu@intel.com>
 
 	PR lto/64837
diff --git a/lto-plugin/lto-plugin.c b/lto-plugin/lto-plugin.c
index 8e0a65799582..add83f2c5c55 100644
--- a/lto-plugin/lto-plugin.c
+++ b/lto-plugin/lto-plugin.c
@@ -1007,7 +1007,8 @@ claim_file_handler (const struct ld_plugin_input_file *file, int *claimed)
   if (obj.objfile)
     simple_object_release_read (obj.objfile);
 
-  release_input_file (file);
+  if (release_input_file)
+    release_input_file (file);
 
   return LDPS_OK;
 }
-- 
GitLab