Don't pass NULL occation to dl_signal_cerror

This commit is contained in:
Andreas Schwab 2010-07-06 08:09:54 -07:00 committed by Ulrich Drepper
parent e8ee8bdf2a
commit 5be9d05d31
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-07-06 Andreas Schwab <schwab@redhat.com>
* elf/dl-version.c (match_symbol): Don't pass NULL occation to
dl_signal_cerror.
2010-07-06 Ulrich Drepper <drepper@redhat.com>
* sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Implement

View File

@ -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;
}