Fix descriptor leak when calling dlopen with RTLD_NOLOAD
authorAndreas Schwab <schwab@redhat.com>
Tue, 6 Oct 2009 11:43:26 +0000 (13:43 +0200)
committerAndreas Schwab <schwab@redhat.com>
Wed, 7 Oct 2009 08:25:38 +0000 (10:25 +0200)
ChangeLog
elf/dl-load.c

index 7192970..934a866 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-10-06  Andreas Schwab  <schwab@redhat.com>
+
+       * elf/dl-load.c (_dl_map_object_from_fd): Close fd before
+       returning if RTLD_NOLOAD.
+
 2009-10-06  Roland McGrath  <roland@redhat.com>
 
        * sysdeps/x86_64/multiarch/strstr-c.c
index 0b896d9..597193c 100644 (file)
@@ -903,9 +903,12 @@ _dl_map_object_from_fd (const char *name, int fd, struct filebuf *fbp,
 #endif
 
   if (mode & RTLD_NOLOAD)
-    /* We are not supposed to load the object unless it is already
-       loaded.  So return now.  */
-    return NULL;
+    {
+      /* We are not supposed to load the object unless it is already
+        loaded.  So return now.  */
+      __close (fd);
+      return NULL;
+    }
 
   /* Print debugging message.  */
   if (__builtin_expect (GLRO(dl_debug_mask) & DL_DEBUG_FILES, 0))