git.annexia.org
/
libguestfs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
869c11b
)
Coverity: Close directory handle along error paths.
author
Richard W.M. Jones
<rjones@redhat.com>
Wed, 8 Jun 2011 21:27:01 +0000
(22:27 +0100)
committer
Richard W.M. Jones
<rjones@redhat.com>
Thu, 9 Jun 2011 09:53:46 +0000
(10:53 +0100)
daemon/devsparts.c
patch
|
blob
|
history
diff --git
a/daemon/devsparts.c
b/daemon/devsparts.c
index
c8f0256
..
52a6d30
100644
(file)
--- a/
daemon/devsparts.c
+++ b/
daemon/devsparts.c
@@
-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;
}