mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 09:48:21 +00:00
Fix memleak: code_gen_buffer
This commit is contained in:
parent
9a2a5b15d8
commit
de5786f98d
1 changed files with 1 additions and 0 deletions
|
@ -45,6 +45,7 @@ static void release_common(void *t)
|
||||||
g_free(def->args_ct);
|
g_free(def->args_ct);
|
||||||
g_free(def->sorted_args);
|
g_free(def->sorted_args);
|
||||||
g_free(s->tcg_op_defs);
|
g_free(s->tcg_op_defs);
|
||||||
|
g_free(s->code_gen_buffer);
|
||||||
|
|
||||||
TCGPool *po, *to;
|
TCGPool *po, *to;
|
||||||
for (po = s->pool_first; po; po = to) {
|
for (po = s->pool_first; po; po = to) {
|
||||||
|
|
Loading…
Reference in a new issue