diff options
| author | Stefan Hajnoczi <stefanha@redhat.com> | 2016-11-14 15:35:57 +0000 |
|---|---|---|
| committer | Stefan Hajnoczi <stefanha@redhat.com> | 2016-11-14 15:35:57 +0000 |
| commit | 736986fad31cd0f25cec89138a566f6938935a29 (patch) | |
| tree | e13553881eefe25bbdbd8706105133456c9fe42c | |
| parent | 83c83f9a5266ff113060f887f106a47920fa6974 (diff) | |
| parent | d9c05e507f7a6647cd7b106c8784f1f15a0e4f5c (diff) | |
| download | focaccia-qemu-736986fad31cd0f25cec89138a566f6938935a29.tar.gz focaccia-qemu-736986fad31cd0f25cec89138a566f6938935a29.zip | |
Merge remote-tracking branch 'remotes/fam/tags/for-upstream' into staging
* remotes/fam/tags/for-upstream: test-uuid: fix leak Message-id: 20161111131818.GC12800@lemon Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
| -rw-r--r-- | tests/test-uuid.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test-uuid.c b/tests/test-uuid.c index 77dcdc4b55..d3a2791fd4 100644 --- a/tests/test-uuid.c +++ b/tests/test-uuid.c @@ -161,6 +161,7 @@ static void test_uuid_unparse_strdup(void) } out = qemu_uuid_unparse_strdup(&uuid_test_data[i].uuid); g_assert_cmpstr(uuid_test_data[i].uuidstr, ==, out); + g_free(out); } } |