mirror of https://gitee.com/openkylin/libvirt.git
qemu: qemuDomainPMSuspendAgent: Don't assign to 'ret' in a conditional
When the guest agent isn't running, we still report success on a PM
suspend action even though we logged an error correctly, this is because
we poisoned the 'ret' value a few lines above.
Fixes: a663a86081
Signed-off-by: Erik Skultety <eskultet@redhat.com>
This commit is contained in:
parent
551fb778f5
commit
9824a82198
|
@ -16770,7 +16770,7 @@ qemuDomainPMSuspendAgent(virQEMUDriverPtr driver,
|
|||
if (qemuDomainObjBeginAgentJob(driver, vm, QEMU_AGENT_JOB_MODIFY) < 0)
|
||||
return -1;
|
||||
|
||||
if ((ret = virDomainObjCheckActive(vm)) < 0)
|
||||
if (virDomainObjCheckActive(vm) < 0)
|
||||
goto endjob;
|
||||
|
||||
if (!qemuDomainAgentAvailable(vm, true))
|
||||
|
|
Loading…
Reference in New Issue