diff options
author | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-02-05 22:06:05 +0000 |
---|---|---|
committer | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-02-05 22:06:05 +0000 |
commit | 487414f1cbd638beb0227c7da71fe7b8a821e155 (patch) | |
tree | bb751c10d2d6953ea16cd8e192e0ee99a7d2ad7f /hw/baum.c | |
parent | 090f1fa3237cbbc2338d29fe7ddb7d35396cddbb (diff) | |
download | qemu-487414f1cbd638beb0227c7da71fe7b8a821e155.tar.gz qemu-487414f1cbd638beb0227c7da71fe7b8a821e155.tar.bz2 qemu-487414f1cbd638beb0227c7da71fe7b8a821e155.zip |
hw: remove error handling from qemu_malloc() callers (Avi Kivity)
Signed-off-by: Avi Kivity <avi@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6529 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/baum.c')
-rw-r--r-- | hw/baum.c | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -575,12 +575,7 @@ CharDriverState *chr_baum_init(void) int tty; baum = qemu_mallocz(sizeof(BaumDriverState)); - if (!baum) - return NULL; - baum->chr = chr = qemu_mallocz(sizeof(CharDriverState)); - if (!chr) - goto fail_baum; chr->opaque = baum; chr->chr_write = baum_write; @@ -588,8 +583,6 @@ CharDriverState *chr_baum_init(void) chr->chr_accept_input = baum_accept_input; handle = qemu_mallocz(brlapi_getHandleSize()); - if (!handle) - goto fail_chr; baum->brlapi = handle; baum->brlapi_fd = brlapi__openConnection(handle, NULL, NULL); @@ -628,11 +621,8 @@ CharDriverState *chr_baum_init(void) fail: qemu_free_timer(baum->cellCount_timer); brlapi__closeConnection(handle); -fail_handle: free(handle); -fail_chr: free(chr); -fail_baum: free(baum); return NULL; } |