[libvirt] [PATCH 04/21] qemu: qapi: Fix return value of impossible case in virQEMUQAPISchemaTraverse

Peter Krempa pkrempa at redhat.com
Mon Apr 15 16:01:57 UTC 2019


The return statement after the infinite loop without a break is there to
appease the compiler. Make it return NULL as it would be a failure if
control flow reaches that point.

Signed-off-by: Peter Krempa <pkrempa at redhat.com>
---
 src/qemu/qemu_qapi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/qemu/qemu_qapi.c b/src/qemu/qemu_qapi.c
index 90df50ec77..de663d4408 100644
--- a/src/qemu/qemu_qapi.c
+++ b/src/qemu/qemu_qapi.c
@@ -164,7 +164,7 @@ virQEMUQAPISchemaTraverse(const char *baseName,
         query++;
     }

-    return base;
+    return NULL;
 }


-- 
2.20.1




More information about the libvir-list mailing list