From 1db8699e7fc41af2c94838d26b582d7eb480cc5c Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Mon, 6 Dec 2010 05:38:10 +0000 Subject: [PATCH] Call plugin_call_cleanup on plugin fatal error. 2010-12-05 H.J. Lu PR ld/12289 * plugin.c (message): Call plugin_call_cleanup on fatal error. --- ld/ChangeLog | 6 ++++++ ld/plugin.c | 3 +++ 2 files changed, 9 insertions(+) diff --git a/ld/ChangeLog b/ld/ChangeLog index 63858ee00..55e320e98 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,5 +1,11 @@ 2010-12-05 H.J. Lu + PR ld/12289 + * plugin.c (message): Call plugin_call_cleanup on fatal + error. + +2010-12-05 H.J. Lu + * plugin.c (message): Add a space after `:' in error message. 2010-12-05 H.J. Lu diff --git a/ld/plugin.c b/ld/plugin.c index 34d76bd84..3d7809c2c 100644 --- a/ld/plugin.c +++ b/ld/plugin.c @@ -590,6 +590,9 @@ message (int level, const char *format, ...) char *newfmt = ACONCAT ((level == LDPL_FATAL ? "%P%F: " : "%P%X: ", format, "\n", NULL)); + if (plugin_call_cleanup ()) + info_msg (_("%P: %s: error in plugin cleanup (ignored)\n"), + plugin_error_plugin ()); vfinfo (stderr, newfmt, args, TRUE); } break; -- 2.11.4.GIT