On 27/11/18 14:06, Greg Kurz wrote: > Because it is a recommended coding practice (see HACKING). > > Signed-off-by: Greg Kurz <gr...@kaod.org> > --- > hw/ppc/virtex_ml507.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/hw/ppc/virtex_ml507.c b/hw/ppc/virtex_ml507.c > index ee9b4b449086..517712057434 100644 > --- a/hw/ppc/virtex_ml507.c > +++ b/hw/ppc/virtex_ml507.c > @@ -105,7 +105,7 @@ static PowerPCCPU *ppc440_init_xilinx(ram_addr_t > *ram_size, > ppc_dcr_init(env, NULL, NULL); > > /* interrupt controller */ > - irqs = g_malloc0(sizeof(qemu_irq) * PPCUIC_OUTPUT_NB); > + irqs = g_new0(qemu_irq, PPCUIC_OUTPUT_NB);
Reviewed-by: Philippe Mathieu-Daudé <phi...@redhat.com> > irqs[PPCUIC_OUTPUT_INT] = ((qemu_irq > *)env->irq_inputs)[PPC40x_INPUT_INT]; > irqs[PPCUIC_OUTPUT_CINT] = ((qemu_irq > *)env->irq_inputs)[PPC40x_INPUT_CINT]; > ppcuic_init(env, irqs, 0x0C0, 0, 1); > >