From: Peter Krempa Date: Sat, 25 Sep 2021 06:34:48 +0000 (+0200) Subject: qemuMonitorJSONAddDeviceProps: Refactor cleanup X-Git-Tag: v7.9.0-rc1~207 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fbc088ab822613286e546440538af42d5a2183e6;p=thirdparty%2Flibvirt.git qemuMonitorJSONAddDeviceProps: Refactor cleanup Use automatic memory freeing and remove 'ret' variable and 'cleanup' label. Signed-off-by: Peter Krempa Reviewed-by: Ján Tomko --- diff --git a/src/qemu/qemu_monitor_json.c b/src/qemu/qemu_monitor_json.c index e5c71f58c2..f831cfeeb5 100644 --- a/src/qemu/qemu_monitor_json.c +++ b/src/qemu/qemu_monitor_json.c @@ -4557,27 +4557,22 @@ int qemuMonitorJSONAddDeviceProps(qemuMonitor *mon, virJSONValue **props) { - int ret = -1; - virJSONValue *cmd = NULL; - virJSONValue *reply = NULL; + g_autoptr(virJSONValue) cmd = NULL; + g_autoptr(virJSONValue) reply = NULL; if (!(cmd = qemuMonitorJSONMakeCommand("device_add", NULL))) - goto cleanup; + return -1; if (virJSONValueObjectAppend(cmd, "arguments", props) < 0) - goto cleanup; + return -1; if (qemuMonitorJSONCommand(mon, cmd, &reply) < 0) - goto cleanup; + return -1; if (qemuMonitorJSONCheckError(cmd, reply) < 0) - goto cleanup; + return -1; - ret = 0; - cleanup: - virJSONValueFree(cmd); - virJSONValueFree(reply); - return ret; + return 0; }