From 365ed9be22dfbe3aee1842e86b24608e6d5b7685ac5e0cf3362164a959f325db Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Fri, 20 Apr 2012 08:13:17 +0000 Subject: [PATCH] Accepting request 114781 from home:a_jaeger:my-factory-packages Cleanup. OBS-URL: https://build.opensuse.org/request/show/114781 OBS-URL: https://build.opensuse.org/package/show/Base:System/glibc?expand=0&rev=171 --- glibc-fix-lookup-crash.patch | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 glibc-fix-lookup-crash.patch diff --git a/glibc-fix-lookup-crash.patch b/glibc-fix-lookup-crash.patch deleted file mode 100644 index d4aaf5c..0000000 --- a/glibc-fix-lookup-crash.patch +++ /dev/null @@ -1,19 +0,0 @@ -Index: glibc-2.11.3/elf/dl-close.c -=================================================================== ---- glibc-2.11.3.orig/elf/dl-close.c 2011-05-27 15:08:23.000000000 +0200 -+++ glibc-2.11.3/elf/dl-close.c 2011-07-13 19:28:52.000000000 +0200 -@@ -127,7 +127,13 @@ _dl_close_worker (struct link_map *map) - { - struct link_map **oldp = map->l_initfini; - map->l_initfini = map->l_orig_initfini; -- _dl_scope_free (oldp); -+ /* We can't remove the l_initfini memory because -+ it's shared with l_searchlist.r_list. We don't clear -+ the latter so when we dlopen this object again that -+ entry would point to stale memory. And we don't want -+ to recompute it as it would involve a new call to -+ map_object_deps. -+ _dl_scope_free (oldp); */ - } - } -