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:
d28f8f4
)
test_qemu: pclose may return any != 0 on error.
author
Richard W.M. Jones
<rjones@redhat.com>
Tue, 23 Aug 2011 17:53:00 +0000
(18:53 +0100)
committer
Richard W.M. Jones
<rjones@redhat.com>
Fri, 16 Sep 2011 15:15:34 +0000
(16:15 +0100)
In particular pclose returns a status > 0 if the command fails.
(cherry picked from commit
a24652c7b27e8494268ccb6c9a5a2e5541ba5efd
)
src/launch.c
patch
|
blob
|
history
diff --git
a/src/launch.c
b/src/launch.c
index
ca48bdd
..
310a88d
100644
(file)
--- a/
src/launch.c
+++ b/
src/launch.c
@@
-1083,7
+1083,7
@@
test_qemu_cmd (guestfs_h *g, const char *cmd, char **ret)
return -1;
}
- if (pclose (fp)
== -1
)
+ if (pclose (fp)
!= 0
)
return -1;
return 0;