mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-11 16:00:50 -07:00
migration: move qemu_fclose to process_incoming_migration
The common suffix is now just process_incoming_migration. Reviewed-by: Orit Wasserman <owasserm@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
ab52a824a4
commit
1c12e1f5b2
5 changed files with 5 additions and 5 deletions
|
|
@ -85,7 +85,11 @@ void qemu_start_incoming_migration(const char *uri, Error **errp)
|
|||
|
||||
void process_incoming_migration(QEMUFile *f)
|
||||
{
|
||||
if (qemu_loadvm_state(f) < 0) {
|
||||
int ret;
|
||||
|
||||
ret = qemu_loadvm_state(f);
|
||||
qemu_fclose(f);
|
||||
if (ret < 0) {
|
||||
fprintf(stderr, "load of migration failed\n");
|
||||
exit(0);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue