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:
Yoshiaki Tamura 2010-06-09 14:44:31 +09:00 committed by Anthony Liguori
parent f2fcffbbe8
commit faa1f8ddc1
1 changed files with 1 additions and 1 deletions

View File

@ -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)