From 487414f1cbd638beb0227c7da71fe7b8a821e155 Mon Sep 17 00:00:00 2001 From: aliguori Date: Thu, 5 Feb 2009 22:06:05 +0000 Subject: hw: remove error handling from qemu_malloc() callers (Avi Kivity) Signed-off-by: Avi Kivity Signed-off-by: Anthony Liguori git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6529 c046a42c-6fe2-441c-8c8c-71466251a162 --- hw/m48t59.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'hw/m48t59.c') diff --git a/hw/m48t59.c b/hw/m48t59.c index c4107dde5..0cfdab39f 100644 --- a/hw/m48t59.c +++ b/hw/m48t59.c @@ -622,13 +622,7 @@ m48t59_t *m48t59_init (qemu_irq IRQ, target_phys_addr_t mem_base, target_phys_addr_t save_base; s = qemu_mallocz(sizeof(m48t59_t)); - if (!s) - return NULL; s->buffer = qemu_mallocz(size); - if (!s->buffer) { - qemu_free(s); - return NULL; - } s->IRQ = IRQ; s->size = size; s->io_base = io_base; -- cgit v1.2.3