[PULL 6/8] hw/xtensa: replace calloc with g_new0 in mx_pic
Michael Tokarev <[email protected]> Fri, 12 Jun 2026 19:59:50 +0300
| Newsgroups | org.nongnu.qemu-trivial,org.nongnu.qemu-devel |
|---|---|
| Message-ID | <[email protected]> |
From: Ajinkya Udgirkar <[email protected]> Replace libc calloc() with GLib g_new0() for consistency with the rest of the QEMU codebase. g_new0() aborts on allocation failure rather than returning NULL, which matches QEMU's allocation policy. Signed-off-by: Ajinkya Udgirkar <[email protected]> Reviewed-by: Max Filippov <[email protected]> Reviewed-by: Michael Tokarev <[email protected]> Signed-off-by: Michael Tokarev <[email protected]> --- hw/xtensa/mx_pic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xtensa/mx_pic.c b/hw/xtensa/mx_pic.c index 098c1aaf85..8ded3bc79b 100644 --- a/hw/xtensa/mx_pic.c +++ b/hw/xtensa/mx_pic.c @@ -343,7 +343,7 @@ static void xtensa_mx_pic_set_irq(void *opaque, int irq, int active) XtensaMxPic *xtensa_mx_pic_init(unsigned n_irq) { - XtensaMxPic *mx = calloc(1, sizeof(XtensaMxPic)); + XtensaMxPic *mx = g_new0(XtensaMxPic, 1); mx->n_irq = n_irq + 1; mx->irq_inputs = qemu_allocate_irqs(xtensa_mx_pic_set_irq, mx, -- 2.47.3