[libvirt PATCH 07/10] qemuMonitorJSONGetAllBlockJobInfo: Remove superfluous `goto`s

Tim Wiederhake twiederh at redhat.com
Mon Jul 19 09:55:51 UTC 2021


Signed-off-by: Tim Wiederhake <twiederh at redhat.com>
---
 src/qemu/qemu_monitor_json.c | 15 +++++----------
 1 file changed, 5 insertions(+), 10 deletions(-)

diff --git a/src/qemu/qemu_monitor_json.c b/src/qemu/qemu_monitor_json.c
index 59c5eedb0a..7e53e0ce84 100644
--- a/src/qemu/qemu_monitor_json.c
+++ b/src/qemu/qemu_monitor_json.c
@@ -5074,39 +5074,34 @@ qemuMonitorJSONGetAllBlockJobInfo(qemuMonitor *mon,
     virJSONValue *data;
     size_t nr_results;
     size_t i;
-    g_autoptr(GHashTable) blockJobs = NULL;
+    g_autoptr(GHashTable) blockJobs = virHashNew(g_free);
 
     cmd = qemuMonitorJSONMakeCommand("query-block-jobs", NULL);
     if (!cmd)
         return NULL;
     if (qemuMonitorJSONCommand(mon, cmd, &reply) < 0)
-        goto cleanup;
+        return NULL;
 
     if ((data = virJSONValueObjectGetArray(reply, "return")) == NULL) {
         virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                        _("reply was missing return data"));
-        goto cleanup;
+        return NULL;
     }
 
     nr_results = virJSONValueArraySize(data);
-    blockJobs = virHashNew(g_free);
 
     for (i = 0; i < nr_results; i++) {
         virJSONValue *entry = virJSONValueArrayGet(data, i);
         if (!entry) {
             virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                            _("missing array element"));
-            goto error;
+            return NULL;
         }
         if (qemuMonitorJSONParseBlockJobInfo(blockJobs, entry, rawjobname) < 0)
-            goto error;
+            return NULL;
     }
 
- cleanup:
     return g_steal_pointer(&blockJobs);
-
- error:
-    return NULL;
 }
 
 
-- 
2.31.1




More information about the libvir-list mailing list