summaryrefslogtreecommitdiffstats
path: root/daemon/initrd.c
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2009-07-01 17:13:39 +0100
committerRichard W.M. Jones <rjones@redhat.com>2009-07-01 17:13:39 +0100
commit3e2d925717d1dac6b3862e98192c12d1080c2152 (patch)
tree85ccb80f7b245ab68b09f3bdc3675c3f89b2182f /daemon/initrd.c
parentfe27753ae5925cbe50042e47115364a57aadbbd7 (diff)
downloadlibguestfs-3e2d925717d1dac6b3862e98192c12d1080c2152.tar.gz
libguestfs-3e2d925717d1dac6b3862e98192c12d1080c2152.tar.xz
libguestfs-3e2d925717d1dac6b3862e98192c12d1080c2152.zip
All instances of 'pclose' now check for return value != 0.
We are generally interested that the subcommand ran without error, ie. had exit status of 0. 'pclose' returns the exit status, so we now check that pclose (fp) != 0.
Diffstat (limited to 'daemon/initrd.c')
-rw-r--r--daemon/initrd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/initrd.c b/daemon/initrd.c
index 513ed8da..2d6cbdde 100644
--- a/daemon/initrd.c
+++ b/daemon/initrd.c
@@ -78,7 +78,7 @@ do_initrd_list (char *path)
return NULL;
}
- if (pclose (fp) == -1) {
+ if (pclose (fp) != 0) {
reply_with_perror ("pclose");
free_strings (filenames);
return NULL;