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 --- target-sh4/translate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'target-sh4/translate.c') diff --git a/target-sh4/translate.c b/target-sh4/translate.c index 569bc73..bad3577 100644 --- a/target-sh4/translate.c +++ b/target-sh4/translate.c @@ -279,7 +279,7 @@ CPUSH4State *cpu_sh4_init(const char *cpu_model) def = cpu_sh4_find_by_name(cpu_model); if (!def) return NULL; - env = qemu_mallocz(sizeof(CPUSH4State)); + env = g_malloc0(sizeof(CPUSH4State)); env->features = def->features; cpu_exec_init(env); env->movcal_backup_tail = &(env->movcal_backup); -- cgit v1.1