mirror of https://gitee.com/openkylin/libvirt.git
qemu_tpm.c: fix 'shortName' leak
This is a Coverity fix pointed out by John in IRC. This code was introduced in19d74fdf0e
, when the TPM Proxy device for for ppc64 was introduced. This will leak in case we have 2 TPMs in the same domain, a possible scenario with the protected Ultravisor execution in PowerPC guests. Fixes:19d74fdf0e
Reported-by: John Ferlan <jferlan@redhat.com> Reviewed-by: Peter Krempa <pkrempa@redhat.com> Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>
This commit is contained in:
parent
e8e90a35df
commit
904e59f43a
|
@ -841,10 +841,11 @@ qemuExtTPMStop(virQEMUDriverPtr driver,
|
|||
virDomainObjPtr vm)
|
||||
{
|
||||
g_autoptr(virQEMUDriverConfig) cfg = virQEMUDriverGetConfig(driver);
|
||||
g_autofree char *shortName = NULL;
|
||||
size_t i;
|
||||
|
||||
for (i = 0; i < vm->def->ntpms; i++) {
|
||||
g_autofree char *shortName = NULL;
|
||||
|
||||
if (vm->def->tpms[i]->type != VIR_DOMAIN_TPM_TYPE_EMULATOR)
|
||||
continue;
|
||||
|
||||
|
@ -866,12 +867,13 @@ qemuExtTPMSetupCgroup(virQEMUDriverPtr driver,
|
|||
virCgroupPtr cgroup)
|
||||
{
|
||||
g_autoptr(virQEMUDriverConfig) cfg = virQEMUDriverGetConfig(driver);
|
||||
g_autofree char *shortName = NULL;
|
||||
int rc;
|
||||
pid_t pid;
|
||||
size_t i;
|
||||
|
||||
for (i = 0; i < def->ntpms; i++) {
|
||||
g_autofree char *shortName = NULL;
|
||||
|
||||
if (def->tpms[i]->type != VIR_DOMAIN_TPM_TYPE_EMULATOR)
|
||||
continue;
|
||||
|
||||
|
|
Loading…
Reference in New Issue