From 8e085dd201b4d691d1407a285a3315378afef7da Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Tue, 5 Oct 2010 22:48:34 +0000 Subject: [PATCH] * bucomm.c (bfd_nonfatal, bfd_nonfatal_message): Don't clobber errno. --- binutils/ChangeLog | 4 ++++ binutils/bucomm.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/binutils/ChangeLog b/binutils/ChangeLog index dd2b665..ada4761 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2010-10-06 Alan Modra + + * bucomm.c (bfd_nonfatal, bfd_nonfatal_message): Don't clobber errno. + 2010-10-05 Alan Modra * bucomm.c (bfd_nonfatal): Flush stdout before output to stderr. diff --git a/binutils/bucomm.c b/binutils/bucomm.c index ccde4bc..b30c2c5 100644 --- a/binutils/bucomm.c +++ b/binutils/bucomm.c @@ -54,8 +54,8 @@ bfd_nonfatal (const char *string) { const char *errmsg; - fflush (stdout); errmsg = bfd_errmsg (bfd_get_error ()); + fflush (stdout); if (string) fprintf (stderr, "%s: %s: %s\n", program_name, string, errmsg); else @@ -84,8 +84,8 @@ bfd_nonfatal_message (const char *filename, const char *section_name; va_list args; - fflush (stdout); errmsg = bfd_errmsg (bfd_get_error ()); + fflush (stdout); section_name = NULL; va_start (args, format); fprintf (stderr, "%s", program_name); -- 2.7.4