Message ID | 1594283305-105724-1-git-send-email-zhengchuan@huawei.com |
---|---|
State | New |
Headers | show |
Series | migration: fix memory leak in qmp_migrate_set_parameters | expand |
diff --git a/migration/migration.c b/migration/migration.c index 92e44e0..045180c 100644 --- a/migration/migration.c +++ b/migration/migration.c @@ -1342,12 +1342,12 @@ static void migrate_params_test_apply(MigrateSetParameters *params, if (params->has_tls_creds) { assert(params->tls_creds->type == QTYPE_QSTRING); - dest->tls_creds = g_strdup(params->tls_creds->u.s); + dest->tls_creds = params->tls_creds->u.s; } if (params->has_tls_hostname) { assert(params->tls_hostname->type == QTYPE_QSTRING); - dest->tls_hostname = g_strdup(params->tls_hostname->u.s); + dest->tls_hostname = params->tls_hostname->u.s; } if (params->has_max_bandwidth) {