summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162>2009-02-05 22:06:18 +0000
committeraliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162>2009-02-05 22:06:18 +0000
commit1eec614b36390be66430ed6dd0ce47a6f2f0ae1a (patch)
treefa9174028d54ea9a531a77d05996688fc704fadd /qemu-tool.c
parenttargets: remove error handling from qemu_malloc() callers (Avi Kivity) (diff)
downloadqemu-kvm-1eec614b36390be66430ed6dd0ce47a6f2f0ae1a.tar.gz
qemu-kvm-1eec614b36390be66430ed6dd0ce47a6f2f0ae1a.tar.bz2
qemu-kvm-1eec614b36390be66430ed6dd0ce47a6f2f0ae1a.zip
toplevel: 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@6531 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'qemu-tool.c')
-rw-r--r--qemu-tool.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/qemu-tool.c b/qemu-tool.c
index c0b1cad66..4dda5af58 100644
--- a/qemu-tool.c
+++ b/qemu-tool.c
@@ -43,10 +43,8 @@ QEMUBH *qemu_bh_new(QEMUBHFunc *cb, void *opaque)
QEMUBH *bh;
bh = qemu_malloc(sizeof(*bh));
- if (bh) {
- bh->cb = cb;
- bh->opaque = opaque;
- }
+ bh->cb = cb;
+ bh->opaque = opaque;
return bh;
}