mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-07 17:28:15 +00:00
Remove VIR_STRDUP usage that sneaked in in the meantime
My hesitation to remove VIR_STRDUP without VIR_STRNDUP resulted in these being able to sneak in. Signed-off-by: Ján Tomko <jtomko@redhat.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
572ce352da
commit
99114a6259
@ -483,9 +483,7 @@ virDomainBackupAlignDisks(virDomainBackupDefPtr def,
|
||||
continue;
|
||||
|
||||
backupdisk = &def->disks[ndisks++];
|
||||
|
||||
if (VIR_STRDUP(backupdisk->name, domdisk->dst) < 0)
|
||||
return -1;
|
||||
backupdisk->name = g_strdup(domdisk->dst);
|
||||
|
||||
if (backup_all &&
|
||||
!virStorageSourceIsEmpty(domdisk->src) &&
|
||||
|
@ -5564,8 +5564,7 @@ int qemuMonitorJSONGetMachines(qemuMonitorPtr mon,
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
if (VIR_STRDUP(info->defaultCPU, tmp) < 0)
|
||||
goto cleanup;
|
||||
info->defaultCPU = g_strdup(tmp);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user