1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-01-23 02:04:16 +03:00

tests/virnetdaemontest.c: testExecRestart: Automatically free virJSONValue-s

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
Peter Krempa 2021-12-01 09:28:08 +01:00
parent f3febf9718
commit 58ebb895ff

View File

@ -273,8 +273,8 @@ static int testExecRestart(const void *opaque)
g_autofree char *outfile = NULL;
g_autofree char *injsonstr = NULL;
g_autofree char *outjsonstr = NULL;
virJSONValue *injson = NULL;
virJSONValue *outjson = NULL;
g_autoptr(virJSONValue) injson = NULL;
g_autoptr(virJSONValue) outjson = NULL;
int fdclient[2] = { -1, -1 }, fdserver[2] = { -1, -1 };
if (socketpair(PF_UNIX, SOCK_STREAM, 0, fdclient) < 0) {
@ -351,8 +351,6 @@ static int testExecRestart(const void *opaque)
VIR_TEST_DEBUG("Test should have failed");
ret = -1;
}
virJSONValueFree(injson);
virJSONValueFree(outjson);
virObjectUnref(dmn);
VIR_FORCE_CLOSE(fdserver[0]);
VIR_FORCE_CLOSE(fdserver[1]);