diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2019-10-01 15:36:25 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2019-10-04 18:49:17 +0200 |
commit | 0287d89f3e3ef11b71e229b1928f1b9b0634a58a (patch) | |
tree | e93da1a3e536175b7872fe81a4cd942b082a6302 /hw/mips | |
parent | 266a880e31d58539a1c7f0177690a047f5016505 (diff) | |
download | qemu-0287d89f3e3ef11b71e229b1928f1b9b0634a58a.zip qemu-0287d89f3e3ef11b71e229b1928f1b9b0634a58a.tar.gz qemu-0287d89f3e3ef11b71e229b1928f1b9b0634a58a.tar.bz2 |
mips: fix memory leaks in board initialization
They are not a big deal, but they upset asan.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'hw/mips')
-rw-r--r-- | hw/mips/mips_int.c | 1 | ||||
-rw-r--r-- | hw/mips/mips_jazz.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/hw/mips/mips_int.c b/hw/mips/mips_int.c index 5ebc961..863ed45 100644 --- a/hw/mips/mips_int.c +++ b/hw/mips/mips_int.c @@ -81,6 +81,7 @@ void cpu_mips_irq_init_cpu(MIPSCPU *cpu) for (i = 0; i < 8; i++) { env->irq[i] = qi[i]; } + g_free(qi); } void cpu_mips_soft_irq(CPUMIPSState *env, int irq, int level) diff --git a/hw/mips/mips_jazz.c b/hw/mips/mips_jazz.c index c967b97..8d010a0 100644 --- a/hw/mips/mips_jazz.c +++ b/hw/mips/mips_jazz.c @@ -362,6 +362,8 @@ static void mips_jazz_init(MachineState *machine, /* LED indicator */ sysbus_create_simple("jazz-led", 0x8000f000, NULL); + + g_free(dmas); } static |