mirror of https://github.com/xemu-project/xemu.git
migration: use qemu_free() instead of free().
Although there is no difference, other migration related code use qemu_free(), and it should be better to be consistent. Signed-off-by: Yoshiaki Tamura <tamura.yoshiaki@lab.ntt.co.jp> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
f2fcffbbe8
commit
faa1f8ddc1
|
@ -396,7 +396,7 @@ void migrate_fd_release(MigrationState *mig_state)
|
|||
s->state = MIG_STATE_CANCELLED;
|
||||
migrate_fd_cleanup(s);
|
||||
}
|
||||
free(s);
|
||||
qemu_free(s);
|
||||
}
|
||||
|
||||
void migrate_fd_wait_for_unfreeze(void *opaque)
|
||||
|
|
Loading…
Reference in New Issue