about summary refs log tree commit diff
path: root/elf/dl-load.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-09-08 20:03:14 +0000
committerUlrich Drepper <drepper@redhat.com>2001-09-08 20:03:14 +0000
commit1181062126ed5daf104aa9f7beb847055c1d4adc (patch)
tree0454507ec9ae7d7ddea8b1518a142cd22ee188ec /elf/dl-load.c
parentf6233fe00300ec9521967b63ed9b35184f27db29 (diff)
downloadglibc-1181062126ed5daf104aa9f7beb847055c1d4adc.tar.gz
glibc-1181062126ed5daf104aa9f7beb847055c1d4adc.tar.xz
glibc-1181062126ed5daf104aa9f7beb847055c1d4adc.zip
Update.
2001-09-08  Ulrich Drepper  <drepper@redhat.com>

	* elf/dl-object.c: Avoid allocating extra memory block for name.
	* elf/dl-close.c (_dl_close): Don't free l_libname if it is no
	allocated separately.
	* elf/dl-load.c (_dl_map_object_from_fd): Likewise.
Diffstat (limited to 'elf/dl-load.c')
-rw-r--r--elf/dl-load.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/elf/dl-load.c b/elf/dl-load.c
index cf05ad0dc8..48c78c32df 100644
--- a/elf/dl-load.c
+++ b/elf/dl-load.c
@@ -1099,7 +1099,8 @@ _dl_map_object_from_fd (const char *name, int fd, struct filebuf *fbp,
       /* We are not supposed to load this object.  Free all resources.  */
       __munmap ((void *) l->l_map_start, l->l_map_end - l->l_map_start);
 
-      free (l->l_libname);
+      if (!l->l_libname->dont_free)
+	free (l->l_libname);
 
       if (l->l_phdr_allocated)
 	free ((void *) l->l_phdr);