]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Don't pass NULL occation to dl_signal_cerror
authorAndreas Schwab <schwab@redhat.com>
Tue, 6 Jul 2010 15:09:54 +0000 (08:09 -0700)
committerUlrich Drepper <drepper@redhat.com>
Tue, 6 Jul 2010 15:09:54 +0000 (08:09 -0700)
ChangeLog
elf/dl-version.c

index a649f09ce7ee783889dc9339436b7dfb07579b2e..3e58a1831e3481dcc91b54bb0db0402b5a456e93 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index c59a6c3cd3ee63b3e84a964c7ba949a2ff094d9c..44158170469b2c3a9333f58d6a800bedcd41c3d0 100644 (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;
 }