diff options
Diffstat (limited to 'py/asmx64.c')
-rw-r--r-- | py/asmx64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/asmx64.c b/py/asmx64.c index c7e3cdc84..2a11de207 100644 --- a/py/asmx64.c +++ b/py/asmx64.c @@ -128,7 +128,7 @@ void asm_x64_free(asm_x64_t* as, bool free_code) { g_array_free(as->label, true); } */ - m_free(as); + m_del_obj(asm_x64_t, as); } void asm_x64_start_pass(asm_x64_t *as, int pass) { |