[libvirt] [PATCH 2/2] qemu: driver: Fix usage of qemuOpenFile

Peter Krempa pkrempa at redhat.com
Wed May 10 12:18:33 UTC 2017


The function returns -errno on failure, not only -1. This broken usage
was introduced by commit 732af77cce.
---
 src/qemu/qemu_driver.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/qemu/qemu_driver.c b/src/qemu/qemu_driver.c
index 92ef983ae..b238181f3 100644
--- a/src/qemu/qemu_driver.c
+++ b/src/qemu/qemu_driver.c
@@ -11327,7 +11327,7 @@ qemuDomainStorageOpenStat(virQEMUDriverPtr driver,
 {
     if (virStorageSourceIsLocalStorage(src)) {
         if ((*ret_fd = qemuOpenFile(driver, vm, src->path, O_RDONLY,
-                                    NULL, NULL)) == -1)
+                                    NULL, NULL)) < 0)
             return -1;

         if (fstat(*ret_fd, ret_sb) < 0) {
-- 
2.12.2




More information about the libvir-list mailing list