From 0d0266a53b4c80ab08c093c36bb3a7bbb29cc3e5 Mon Sep 17 00:00:00 2001 From: aliguori Date: Thu, 5 Feb 2009 22:06:11 +0000 Subject: targets: 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@6530 c046a42c-6fe2-441c-8c8c-71466251a162 --- target-ppc/helper.c | 2 -- target-ppc/kvm_ppc.c | 4 ---- target-ppc/translate_init.c | 2 -- 3 files changed, 8 deletions(-) (limited to 'target-ppc') diff --git a/target-ppc/helper.c b/target-ppc/helper.c index 3bd1d45..fc62a63 100644 --- a/target-ppc/helper.c +++ b/target-ppc/helper.c @@ -2761,8 +2761,6 @@ CPUPPCState *cpu_ppc_init (const char *cpu_model) return NULL; env = qemu_mallocz(sizeof(CPUPPCState)); - if (!env) - return NULL; cpu_exec_init(env); ppc_translate_init(); env->cpu_model_str = cpu_model; diff --git a/target-ppc/kvm_ppc.c b/target-ppc/kvm_ppc.c index 82c0f42..10cfdb3 100644 --- a/target-ppc/kvm_ppc.c +++ b/target-ppc/kvm_ppc.c @@ -33,10 +33,6 @@ int kvmppc_read_host_property(const char *node_path, const char *prop, pathlen = snprintf(NULL, 0, "%s/%s/%s", PROC_DEVTREE_PATH, node_path, prop) + 1; path = qemu_malloc(pathlen); - if (path == NULL) { - ret = -ENOMEM; - goto out; - } snprintf(path, pathlen, "%s/%s/%s", PROC_DEVTREE_PATH, node_path, prop); 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); -- cgit v1.1