From 1eec614b36390be66430ed6dd0ce47a6f2f0ae1a Mon Sep 17 00:00:00 2001 From: aliguori Date: Thu, 5 Feb 2009 22:06:18 +0000 Subject: toplevel: 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@6531 c046a42c-6fe2-441c-8c8c-71466251a162 --- aio.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'aio.c') diff --git a/aio.c b/aio.c index 70d3cdc..200320c 100644 --- a/aio.c +++ b/aio.c @@ -79,8 +79,6 @@ int qemu_aio_set_fd_handler(int fd, if (node == NULL) { /* Alloc and insert if it's not already there */ node = qemu_mallocz(sizeof(AioHandler)); - if (node == NULL) - return -ENOMEM; node->fd = fd; LIST_INSERT_HEAD(&aio_handlers, node, node); } -- cgit v1.1