From 7267c0947d7e8ae5dff7bafd932c3bc285f43e5c Mon Sep 17 00:00:00 2001 From: Anthony Liguori Date: Sat, 20 Aug 2011 22:09:37 -0500 Subject: Use glib memory allocation and free functions qemu_malloc/qemu_free no longer exist after this commit. Signed-off-by: Anthony Liguori --- check-qstring.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'check-qstring.c') diff --git a/check-qstring.c b/check-qstring.c index c9bafc26b3..93bd4757b7 100644 --- a/check-qstring.c +++ b/check-qstring.c @@ -32,8 +32,8 @@ START_TEST(qstring_from_str_test) fail_unless(qobject_type(QOBJECT(qstring)) == QTYPE_QSTRING); // destroy doesn't exit yet - qemu_free(qstring->string); - qemu_free(qstring); + g_free(qstring->string); + g_free(qstring); } END_TEST -- cgit 1.4.1