Changeset 73ace20 for patches/eglibc-2.15-r16526-dl_dep_fix-1.patch
- Timestamp:
- Oct 10, 2012, 6:42:21 PM (12 years ago)
- Branches:
- clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
- Children:
- f7b2c72
- Parents:
- 0cce40d (diff), 80cbd64 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
patches/eglibc-2.15-r16526-dl_dep_fix-1.patch
r0cce40d r73ace20 1 Submitted By: Jo e Ciccone <jciccone@gmail.com>2 Date: 201 1-04-163 Initial Package Version: 2.1 3 r133561 Submitted By: Jonathan Norman (jonathan at bluesquarelinux dot co dot uk) 2 Date: 2012-02-26 3 Initial Package Version: 2.15 r16526 4 4 Origin: Andreas Schwab 5 5 Via http://sourceware.org/ml/libc-hacker/2011-02/msg00002.html … … 7 7 Description: If a ELF binaries dependencies are missing it was causing 8 8 a signal too early. 9 Rediffed by Jonathan Norman for Eglibc 2.15 9 10 10 diff -Naur eglibc-2.13.orig/elf/dl-deps.c eglibc-2.13/elf/dl-deps.c 11 --- eglibc-2.13.orig/elf/dl-deps.c 2011-02-04 22:31:21.000000000 +0000 12 +++ eglibc-2.13/elf/dl-deps.c 2011-04-16 23:44:34.479218974 +0000 13 @@ -491,6 +491,10 @@ 11 12 diff -Naur eglibc-2.15.orig/elf/dl-deps.c eglibc-2.15/elf/dl-deps.c 13 --- eglibc-2.15.orig/elf/dl-deps.c 2012-02-26 17:15:55.394189832 +0000 14 +++ eglibc-2.15/elf/dl-deps.c 2012-02-26 17:21:48.882756229 +0000 15 @@ -502,6 +502,10 @@ 14 16 if (errno == 0 && errno_saved != 0) 15 17 __set_errno (errno_saved); … … 17 19 + if (errno_reason) 18 20 + _dl_signal_error (errno_reason == -1 ? 0 : errno_reason, objname, 19 + 21 + NULL, errstring); 20 22 + 21 23 struct link_map **old_l_initfini = NULL; 22 24 if (map->l_initfini != NULL && map->l_type == lt_loaded) 23 25 { 24 @@ -683,8 +687,4 @@ 25 } 26 @@ -699,7 +703,4 @@ 26 27 if (old_l_initfini != NULL) 27 _dl_scope_free (old_l_initfini);28 - 28 map->l_orig_initfini = old_l_initfini; 29 29 30 - if (errno_reason) 30 31 - _dl_signal_error (errno_reason == -1 ? 0 : errno_reason, objname,
Note:
See TracChangeset
for help on using the changeset viewer.