Skip to content

Commit

Permalink
eglibc: fix RH Bug #737223 (https://bugzilla.redhat.com/show_bug.cgi?…
Browse files Browse the repository at this point in the history
…id=737223)

Signed-off-by: Stephan Raue <stephan@openelec.tv>
  • Loading branch information
sraue committed Feb 10, 2012
1 parent 0edf6fd commit 6d56b92
Showing 1 changed file with 12 additions and 0 deletions.
@@ -0,0 +1,12 @@
diff -Naur eglibc-2.15-17022/elf/rtld.c eglibc-2.15-17022.patch/elf/rtld.c
--- eglibc-2.15-17022/elf/rtld.c 2012-02-07 05:47:54.000000000 +0100
+++ eglibc-2.15-17022.patch/elf/rtld.c 2012-02-10 04:52:55.462289159 +0100
@@ -1398,7 +1398,7 @@
char *copy = malloc (len);
if (copy == NULL)
_dl_fatal_printf ("out of memory\n");
- l->l_libname->name = l->l_name = memcpy (copy, dsoname, len);
+ l->l_libname->name = memcpy (copy, dsoname, len);
}

/* Add the vDSO to the object list. */

0 comments on commit 6d56b92

Please sign in to comment.