Skip to content

Commit 890241a

Browse files
elmarcobonzini
authored andcommitted
tests: fix migration-test leak
Direct leak of 12 byte(s) in 2 object(s) allocated from: #0 0x7f50d403c850 in malloc (/lib64/libasan.so.4+0xde850) #1 0x7f50d1ddf98f in vasprintf (/lib64/libc.so.6+0x8098f) Signed-off-by: Marc-André Lureau <[email protected]> Reviewed-by: Dr. David Alan Gilbert <[email protected]> Reviewed-by: Philippe Mathieu-Daudé <[email protected]> Message-Id: <[email protected]> Signed-off-by: Paolo Bonzini <[email protected]>
1 parent e5dc1a6 commit 890241a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/migration-test.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -358,13 +358,14 @@ static void migrate_check_parameter(QTestState *who, const char *parameter,
358358
const char *value)
359359
{
360360
QDict *rsp, *rsp_return;
361-
const char *result;
361+
char *result;
362362

363363
rsp = wait_command(who, "{ 'execute': 'query-migrate-parameters' }");
364364
rsp_return = qdict_get_qdict(rsp, "return");
365365
result = g_strdup_printf("%" PRId64,
366366
qdict_get_try_int(rsp_return, parameter, -1));
367367
g_assert_cmpstr(result, ==, value);
368+
g_free(result);
368369
QDECREF(rsp);
369370
}
370371

0 commit comments

Comments
 (0)