Skip to content

Commit

Permalink
Don't crash when dependencies are missing
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Schwab authored and Ulrich Drepper committed Feb 25, 2011
1 parent 6c8a2e8 commit f2092fa
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
8 changes: 7 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
8 changes: 4 additions & 4 deletions elf/dl-deps.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down Expand Up @@ -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);
}

0 comments on commit f2092fa

Please sign in to comment.