From 117a318188703018ec127dc65b9ae1466a66cf9d Mon Sep 17 00:00:00 2001 From: danghvu Date: Fri, 8 Jul 2016 12:49:43 -0500 Subject: [PATCH] memleak: missing from refactoring --- qemu/unicorn_common.h | 1 + uc.c | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/qemu/unicorn_common.h b/qemu/unicorn_common.h index 080d9202..61f47fec 100644 --- a/qemu/unicorn_common.h +++ b/qemu/unicorn_common.h @@ -52,6 +52,7 @@ static void release_common(void *t) phys_mem_clean(s->uc); address_space_destroy(&(s->uc->as)); memory_free(s->uc); + tb_cleanup(s->uc); #if TCG_TARGET_REG_BITS == 32 for(i = 0; i < s->nb_globals; i++) { diff --git a/uc.c b/uc.c index f3346930..1e72b872 100644 --- a/uc.c +++ b/uc.c @@ -338,7 +338,7 @@ uc_err uc_close(uc_engine *uc) } g_hash_table_foreach(uc->type_table, free_table, uc); - g_hash_table_unref(uc->type_table); + g_hash_table_destroy(uc->type_table); for (i = 0; i < DIRTY_MEMORY_NUM; i++) { free(uc->ram_list.dirty_memory[i]); @@ -1153,7 +1153,7 @@ uc_err uc_query(uc_engine *uc, uc_query_type type, size_t *result) *result = uc->target_page_size; return UC_ERR_OK; } - + switch(uc->arch) { case UC_ARCH_ARM: return uc->query(uc, type, result);