diff options
author | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-02-05 22:06:11 +0000 |
---|---|---|
committer | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-02-05 22:06:11 +0000 |
commit | 0d0266a53b4c80ab08c093c36bb3a7bbb29cc3e5 (patch) | |
tree | 1ef47f454110978692b280d7a54c737c3eab4943 /target-ppc/translate_init.c | |
parent | 487414f1cbd638beb0227c7da71fe7b8a821e155 (diff) | |
download | qemu-0d0266a53b4c80ab08c093c36bb3a7bbb29cc3e5.zip qemu-0d0266a53b4c80ab08c093c36bb3a7bbb29cc3e5.tar.gz qemu-0d0266a53b4c80ab08c093c36bb3a7bbb29cc3e5.tar.bz2 |
targets: 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@6530 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-ppc/translate_init.c')
-rw-r--r-- | target-ppc/translate_init.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/target-ppc/translate_init.c b/target-ppc/translate_init.c index 9570479..c808923 100644 --- a/target-ppc/translate_init.c +++ b/target-ppc/translate_init.c @@ -9040,8 +9040,6 @@ static int create_new_table (opc_handler_t **table, unsigned char idx) opc_handler_t **tmp; tmp = malloc(0x20 * sizeof(opc_handler_t)); - if (tmp == NULL) - return -1; fill_new_table(tmp, 0x20); table[idx] = (opc_handler_t *)((unsigned long)tmp | PPC_INDIRECT); |