aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAvihai Horon <avihaih@nvidia.com>2023-12-31 11:30:07 +0200
committerPeter Xu <peterx@redhat.com>2024-01-04 09:52:42 +0800
commit80caba6955c422ac7f848999cb961846aa2781d1 (patch)
tree9c55ba92278f8f736ff86c47ef3e190c682334d2
parent17b9483baae595aa1b9d25adceb240bf74fdb1ee (diff)
downloadqemu-80caba6955c422ac7f848999cb961846aa2781d1.zip
qemu-80caba6955c422ac7f848999cb961846aa2781d1.tar.gz
qemu-80caba6955c422ac7f848999cb961846aa2781d1.tar.bz2
migration: Remove nulling of hostname in migrate_init()
MigrationState->hostname is set to NULL in migrate_init(). This is redundant because it is already freed and set to NULL in migrade_fd_cleanup(). Remove it. Signed-off-by: Avihai Horon <avihaih@nvidia.com> Reviewed-by: Fabiano Rosas <farosas@suse.de> Link: https://lore.kernel.org/r/20231231093016.14204-3-avihaih@nvidia.com Signed-off-by: Peter Xu <peterx@redhat.com>
-rw-r--r--migration/migration.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/migration/migration.c b/migration/migration.c
index 2cc7e2a..15dc8aa 100644
--- a/migration/migration.c
+++ b/migration/migration.c
@@ -1588,7 +1588,6 @@ int migrate_init(MigrationState *s, Error **errp)
s->migration_thread_running = false;
error_free(s->error);
s->error = NULL;
- s->hostname = NULL;
s->vmdesc = NULL;
migrate_set_state(&s->state, MIGRATION_STATUS_NONE, MIGRATION_STATUS_SETUP);