Also, we now return the qemu_fclose() value unchanged to the caller. For reference, the migrate_fd_cleanup() callers are the following:
- migrate_fd_completed(): any negative value is considered an error, so the change is OK. - migrate_fd_error(): doesn't check the migrate_fd_cleanup() return value - migrate_fd_cancel(): doesn't check the migrate_fd_cleanup() return value Signed-off-by: Eduardo Habkost <ehabk...@redhat.com> --- migration.c | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/migration.c b/migration.c index 3b4abbd..a98897c 100644 --- a/migration.c +++ b/migration.c @@ -172,9 +172,7 @@ static int migrate_fd_cleanup(MigrationState *s) if (s->file) { DPRINTF("closing file\n"); - if (qemu_fclose(s->file) != 0) { - ret = -1; - } + ret = qemu_fclose(s->file); s->file = NULL; } else { if (s->mon) { -- 1.7.3.2