diff options
author | Andreas Schwab <schwab@redhat.com> | 2011-02-25 20:49:48 -0500 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-02-25 20:49:48 -0500 |
commit | 4bff6e0175ed195871f4e01cc4c4c33274b8f6e3 (patch) | |
tree | c66f1fa828edf1592d7f73c4200c16ae2996f8b5 /include/link.h | |
parent | 661b9e2014b3964469198ce7697a1d0d06aa4882 (diff) | |
download | glibc-4bff6e0175ed195871f4e01cc4c4c33274b8f6e3.tar glibc-4bff6e0175ed195871f4e01cc4c4c33274b8f6e3.tar.gz glibc-4bff6e0175ed195871f4e01cc4c4c33274b8f6e3.tar.bz2 glibc-4bff6e0175ed195871f4e01cc4c4c33274b8f6e3.zip |
Fix memory leak in dlopen with RTLD_NOLOAD.
Diffstat (limited to 'include/link.h')
-rw-r--r-- | include/link.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/link.h b/include/link.h index 9d1fc1a8fe..e877104641 100644 --- a/include/link.h +++ b/include/link.h @@ -1,6 +1,6 @@ /* Data structure for communication from the run-time dynamic linker for loaded ELF shared objects. - Copyright (C) 1995-2006, 2007, 2009, 2010 Free Software Foundation, Inc. + Copyright (C) 1995-2006, 2007, 2009, 2010, 2011 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -240,6 +240,9 @@ struct link_map /* List of object in order of the init and fini calls. */ struct link_map **l_initfini; + /* The init and fini list generated at startup, saved when the + object is also loaded dynamically. */ + struct link_map **l_orig_initfini; /* List of the dependencies introduced through symbol binding. */ struct link_map_reldeps |