Coverity: Close directory handle along error paths.
authorRichard W.M. Jones <rjones@redhat.com>
Wed, 8 Jun 2011 21:27:01 +0000 (22:27 +0100)
committerRichard W.M. Jones <rjones@redhat.com>
Thu, 9 Jun 2011 09:53:46 +0000 (10:53 +0100)
daemon/devsparts.c

index c8f0256..52a6d30 100644 (file)
@@ -89,6 +89,7 @@ foreach_block_device (block_dev_func_t func)
   if(0 != errno) {
     reply_with_perror ("readdir: /sys/block");
     free_stringslen(r, size);
+    closedir (dir);
     return NULL;
   }
 
@@ -175,6 +176,7 @@ add_partitions(const char *device,
   if(0 != errno) {
       reply_with_perror ("readdir: %s", devdir);
       free_stringslen(*r, *size);
+      closedir (dir);
       return -1;
   }