From: Andreas Schwab Date: Tue, 6 Jul 2010 15:09:54 +0000 (-0700) Subject: Don't pass NULL occation to dl_signal_cerror X-Git-Tag: fedora/glibc-2.12.90-5~1^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5be9d05d3136460cf6cedd3823fd236aeebe83ef;p=thirdparty%2Fglibc.git Don't pass NULL occation to dl_signal_cerror --- diff --git a/ChangeLog b/ChangeLog index a649f09ce7e..3e58a1831e3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-07-06 Andreas Schwab + + * elf/dl-version.c (match_symbol): Don't pass NULL occation to + dl_signal_cerror. + 2010-07-06 Ulrich Drepper * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Implement diff --git a/elf/dl-version.c b/elf/dl-version.c index c59a6c3cd3e..44158170469 100644 --- a/elf/dl-version.c +++ b/elf/dl-version.c @@ -169,7 +169,7 @@ no version information available (required by ", name, ")"); result = 1; call_cerror: _dl_signal_cerror (0, map->l_name[0] ? map->l_name : rtld_progname, - NULL, errstring); + N_("version lookup error"), errstring); return result; }