migration: to_dst_file at that point is NULL
commitfd4144d41302d288acdb6d309f658df7a8254612
authorJuan Quintela <quintela@redhat.com>
Wed, 5 Apr 2017 15:32:56 +0000 (5 17:32 +0200)
committerJuan Quintela <quintela@redhat.com>
Thu, 4 May 2017 08:00:38 +0000 (4 10:00 +0200)
treeb5335695ba7570a4d60d1e28c12d26e894a02105
parent062d81f0e968fe1597474735f3ea038065027372
migration: to_dst_file at that point is NULL

We have just arrived as:

migration.c: qemu_migrate()
  ....
  s = migrate_init() <- puts it to NULL
  ....
  {tcp,unix}_start_outgoing_migration ->
     socket_outgoing_migration
        migration_channel_connect()
   sets to_dst_file

if tls is enabled, we do another round through
migrate_channel_tls_connect(), but we only set it up if there is no
error.  So we don't need the assignation.  I am removing it to remove
in the follwing patches the knowledge about MigrationState in that two
files.

Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Laurent Vivier <lvivier@redhat.com>
Reviewed-by: Daniel P. Berrange <berrange@redhat.com>
Reviewed-by: Peter Xu <peterx@redhat.com>
migration/socket.c
migration/tls.c