Don't crash when dependencies are missing
authorAndreas Schwab <schwab@redhat.com>
Fri, 25 Feb 2011 21:51:24 +0000 (16:51 -0500)
committerUlrich Drepper <drepper@gmail.com>
Fri, 25 Feb 2011 21:51:24 +0000 (16:51 -0500)
ChangeLog
elf/dl-deps.c

index 0113c4c..c30fb5c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,12 @@
+2011-02-17  Andreas Schwab  <schwab@redhat.com>
+
+       [BZ #12454]
+       * elf/dl-deps.c (_dl_map_object_deps): Signal error early when
+       dependencies are missing.
+
 2011-02-22  Samuel Thibault  <samuel.thibault@ens-lyon.org>
 
-        Fix __if_freereq crash: Unlike the generic version which uses free,
+       Fix __if_freereq crash: Unlike the generic version which uses free,
        Hurd needs munmap.
        * sysdeps/mach/hurd/ifreq.h: New file.
 
index 440fb56..5288353 100644 (file)
@@ -491,6 +491,10 @@ _dl_map_object_deps (struct link_map *map,
   if (errno == 0 && errno_saved != 0)
     __set_errno (errno_saved);
 
+  if (errno_reason)
+    _dl_signal_error (errno_reason == -1 ? 0 : errno_reason, objname,
+                     NULL, errstring);
+
   struct link_map **old_l_initfini = NULL;
   if (map->l_initfini != NULL && map->l_type == lt_loaded)
     {
@@ -683,8 +687,4 @@ Filters not supported with LD_TRACE_PRELINKING"));
     }
   if (old_l_initfini != NULL)
     _dl_scope_free (old_l_initfini);
-
-  if (errno_reason)
-    _dl_signal_error (errno_reason == -1 ? 0 : errno_reason, objname,
-                     NULL, errstring);
 }