[PATCH 07/18] qemu: monitor: Replace virJSONValueObjectCreate by virJSONValueObjectAdd

Peter Krempa pkrempa at redhat.com
Mon Nov 15 14:22:06 UTC 2021


virJSONValueObjectAdd now works identically to virJSONValueObjectCreate
when used with a NULL argument. Replace all callers.

Signed-off-by: Peter Krempa <pkrempa at redhat.com>
---
 src/qemu/qemu_monitor.c | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/qemu/qemu_monitor.c b/src/qemu/qemu_monitor.c
index 398bef2e96..ac988e063b 100644
--- a/src/qemu/qemu_monitor.c
+++ b/src/qemu/qemu_monitor.c
@@ -2880,10 +2880,10 @@ qemuMonitorCreateObjectProps(virJSONValue **propsret,
     int rc;
     va_list args;

-    if (virJSONValueObjectCreate(&props,
-                                 "s:qom-type", type,
-                                 "s:id", alias,
-                                 NULL) < 0)
+    if (virJSONValueObjectAdd(&props,
+                              "s:qom-type", type,
+                              "s:id", alias,
+                              NULL) < 0)
         return -1;


@@ -2961,11 +2961,11 @@ qemuMonitorAddObject(qemuMonitor *mon,
             *props = NULL;
         }

-        if (virJSONValueObjectCreate(&pr,
-                                     "s:qom-type", type,
-                                     "s:id", id,
-                                     "A:props", props,
-                                     NULL) < 0)
+        if (virJSONValueObjectAdd(&pr,
+                                  "s:qom-type", type,
+                                  "s:id", id,
+                                  "A:props", props,
+                                  NULL) < 0)
             return -1;
     }

-- 
2.31.1




More information about the libvir-list mailing list