[libvirt] [PATCH] qemu: Fix return check on virHashAddEntry call

John Ferlan jferlan at redhat.com
Fri Sep 15 12:39:10 UTC 2017


Luckily it only returns 0 or -1

Signed-off-by: John Ferlan <jferlan at redhat.com>
---
 Pushed as trivial..

 Tripped across this while working on something else.  

 src/qemu/qemu_conf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/qemu/qemu_conf.c b/src/qemu/qemu_conf.c
index ab5f7cc59..68c00c1e8 100644
--- a/src/qemu/qemu_conf.c
+++ b/src/qemu/qemu_conf.c
@@ -1300,7 +1300,7 @@ qemuSharedDeviceEntryInsert(virQEMUDriverPtr driver,
 
         entry->ref = 1;
 
-        if (virHashAddEntry(driver->sharedDevices, key, entry))
+        if (virHashAddEntry(driver->sharedDevices, key, entry) < 0)
             goto error;
     }
 
-- 
2.13.5




More information about the libvir-list mailing list