diff options
author | aliguori | 2009-02-05 23:06:11 +0100 |
---|---|---|
committer | aliguori | 2009-02-05 23:06:11 +0100 |
commit | 0d0266a53b4c80ab08c093c36bb3a7bbb29cc3e5 (patch) | |
tree | 1ef47f454110978692b280d7a54c737c3eab4943 /target-sparc/helper.c | |
parent | hw: remove error handling from qemu_malloc() callers (Avi Kivity) (diff) | |
download | qemu-0d0266a53b4c80ab08c093c36bb3a7bbb29cc3e5.tar.gz qemu-0d0266a53b4c80ab08c093c36bb3a7bbb29cc3e5.tar.xz qemu-0d0266a53b4c80ab08c093c36bb3a7bbb29cc3e5.zip |
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-sparc/helper.c')
-rw-r--r-- | target-sparc/helper.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/target-sparc/helper.c b/target-sparc/helper.c index a275880851..1a06525764 100644 --- a/target-sparc/helper.c +++ b/target-sparc/helper.c @@ -713,8 +713,6 @@ CPUSPARCState *cpu_sparc_init(const char *cpu_model) CPUSPARCState *env; env = qemu_mallocz(sizeof(CPUSPARCState)); - if (!env) - return NULL; cpu_exec_init(env); gen_intermediate_code_init(env); |