From patchwork Tue Apr 20 21:09:32 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [02/22] savevm: Don't check the return of qemu_fopen_bdrv() From: Luiz Capitulino X-Patchwork-Id: 50576 Message-Id: <1271797792-24571-3-git-send-email-lcapitulino@redhat.com> To: qemu-devel@nongnu.org, armbru@redhat.com, quintela@redhat.com, kwolf@redhat.com Cc: Date: Tue, 20 Apr 2010 18:09:32 -0300 It never fails. Signed-off-by: Luiz Capitulino --- savevm.c | 8 -------- 1 files changed, 0 insertions(+), 8 deletions(-) diff --git a/savevm.c b/savevm.c index 086c92a..254f9fc 100644 --- a/savevm.c +++ b/savevm.c @@ -1705,10 +1705,6 @@ void do_savevm(Monitor *mon, const QDict *qdict) /* save the VM state */ f = qemu_fopen_bdrv(bs, 1); - if (!f) { - monitor_printf(mon, "Could not open VM state file\n"); - goto the_end; - } ret = qemu_savevm_state(mon, f); vm_state_size = qemu_ftell(f); qemu_fclose(f); @@ -1790,10 +1786,6 @@ int load_vmstate(const char *name) /* restore the VM state */ f = qemu_fopen_bdrv(bs, 0); - if (!f) { - error_report("Could not open VM state file"); - return -EINVAL; - } ret = qemu_loadvm_state(f); qemu_fclose(f); if (ret < 0) {