mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 11:18:16 +00:00
fix free() -> g_free()
This commit is contained in:
parent
236b6e9085
commit
f99030179c
1 changed files with 1 additions and 1 deletions
|
@ -122,7 +122,7 @@ static void *qemu_tcg_cpu_loop(struct uc_struct *uc)
|
||||||
CPU_FOREACH(cpu) {
|
CPU_FOREACH(cpu) {
|
||||||
cpu->created = false;
|
cpu->created = false;
|
||||||
qemu_cond_destroy(cpu->halt_cond);
|
qemu_cond_destroy(cpu->halt_cond);
|
||||||
free(cpu->halt_cond);
|
g_free(cpu->halt_cond);
|
||||||
cpu->halt_cond = NULL;
|
cpu->halt_cond = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue