mirror of https://gitee.com/openkylin/libvirt.git
qemu: Fix the memory leak
Found by John Ferlan (coverity script)
This commit is contained in:
parent
903f43ce6d
commit
5c9034bf05
|
@ -1042,6 +1042,7 @@ qemuAddSharedDisk(virQEMUDriverPtr driver,
|
|||
if ((VIR_ALLOC(entry) < 0) ||
|
||||
(VIR_ALLOC_N(entry->domains, 1) < 0) ||
|
||||
!(entry->domains[0] = strdup(name))) {
|
||||
qemuSharedDiskEntryFree(entry, NULL);
|
||||
virReportOOMError();
|
||||
goto cleanup;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue