mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-23 11:39:53 +00:00
target-arm: Fix use of free() in cpu_arm_close()
env is allocated in cpu_arm_init() with g_malloc0(), so free with g_free(). Signed-off-by: Andreas Färber <afaerber@suse.de> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
1518025641
commit
12b1de3a3f
@ -475,7 +475,7 @@ static uint32_t cpu_arm_find_by_name(const char *name)
|
||||
|
||||
void cpu_arm_close(CPUARMState *env)
|
||||
{
|
||||
free(env);
|
||||
g_free(env);
|
||||
}
|
||||
|
||||
uint32_t cpsr_read(CPUARMState *env)
|
||||
|
Loading…
Reference in New Issue
Block a user