From: Ian Lance Taylor Date: Sat, 29 Sep 2012 17:50:54 +0000 (+0000) Subject: re PR other/54749 (libbacktrace) X-Git-Tag: misc/gccgo-go1_1_2~569 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8a447b3d4d5fea7bbbab81658a696f642b2b8d93;p=thirdparty%2Fgcc.git re PR other/54749 (libbacktrace) PR other/54749 * fileline.c (fileline_initialize): Pass errnum as -1 when reporting that we could not read executable information after a previous failure. From-SVN: r191855 --- diff --git a/libbacktrace/ChangeLog b/libbacktrace/ChangeLog index c7702baf3bd0..c5725793f2fc 100644 --- a/libbacktrace/ChangeLog +++ b/libbacktrace/ChangeLog @@ -1,3 +1,10 @@ +2012-09-29 Ian Lance Taylor + + PR other/54749 + * fileline.c (fileline_initialize): Pass errnum as -1 when + reporting that we could not read executable information after a + previous failure. + 2012-09-27 Ian Lance Taylor PR bootstrap/54732 diff --git a/libbacktrace/fileline.c b/libbacktrace/fileline.c index 6aeaf40159fb..4efd19b05950 100644 --- a/libbacktrace/fileline.c +++ b/libbacktrace/fileline.c @@ -63,7 +63,7 @@ fileline_initialize (struct backtrace_state *state, if (failed) { - error_callback (data, "failed to read executable information", 0); + error_callback (data, "failed to read executable information", -1); return 0; }