wrong open() failure detection

* src/qemu_driver.c: Guido Trotter pointed out a wrong open() failure
  detection
Daniel
This commit is contained in:
Daniel Veillard 2008-07-25 08:42:05 +00:00
parent 388502750e
commit 6fae611381
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Fri Jul 25 10:39:54 CEST 2008 Daniel Veillard <veillard@redhat.com>
* src/qemu_driver.c: Guido Trotter pointed out a wrong open() failure
detection
Fri Jul 25 08:36:18 CEST 2008 Daniel Veillard <veillard@redhat.com>
* docs/libvirt.rng: patch from John Levon fixing various patterns

View File

@ -504,7 +504,7 @@ static int qemudOpenMonitor(virConnectPtr conn,
char buf[1024];
int ret = -1;
if (!(monfd = open(monitor, O_RDWR))) {
if ((monfd = open(monitor, O_RDWR)) < 0) {
qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
_("Unable to open monitor path %s"), monitor);
return -1;