1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-04-01 20:05:19 +00:00

qemuAgentMakeStringsArray: Refactor cleanup

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
Peter Krempa 2021-02-12 11:32:46 +01:00
parent 5fc3892891
commit 83a50fe2a5

View File

@ -1175,23 +1175,17 @@ static virJSONValuePtr
qemuAgentMakeStringsArray(const char **strings, unsigned int len)
{
size_t i;
virJSONValuePtr ret = virJSONValueNewArray(), str;
g_autoptr(virJSONValue) ret = virJSONValueNewArray();
for (i = 0; i < len; i++) {
str = virJSONValueNewString(strings[i]);
if (!str)
goto error;
g_autoptr(virJSONValue) str = virJSONValueNewString(strings[i]);
if (virJSONValueArrayAppend(ret, str) < 0) {
virJSONValueFree(str);
goto error;
}
if (virJSONValueArrayAppend(ret, str) < 0)
return NULL;
str = NULL;
}
return ret;
error:
virJSONValueFree(ret);
return NULL;
return g_steal_pointer(&ret);
}
void qemuAgentNotifyEvent(qemuAgentPtr agent,