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 --- migration-exec.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'migration-exec.c') diff --git a/migration-exec.c b/migration-exec.c index caeed4bbc0..6ed322a989 100644 --- a/migration-exec.c +++ b/migration-exec.c @@ -61,10 +61,6 @@ MigrationState *exec_start_outgoing_migration(const char *command, FILE *f; s = qemu_mallocz(sizeof(*s)); - if (s == NULL) { - dprintf("Unable to allocate FdMigrationState\n"); - goto err; - } f = popen(command, "w"); if (f == NULL) { @@ -109,7 +105,6 @@ err_after_open: pclose(f); err_after_alloc: qemu_free(s); -err: return NULL; } -- cgit v1.2.1