mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-26 03:21:44 +03:00
qemu: Don't miss errors when changing graphics passwords
Commit 23e8b5d8e7
forgot to check the
return value for all calls to qemuDomainChangeGraphicsPasswords().
This commit is contained in:
parent
350fd95f40
commit
556808ec9d
@ -2055,10 +2055,10 @@ qemuProcessInitPasswords(virConnectPtr conn,
|
||||
&graphics->data.spice.auth,
|
||||
cfg->spicePassword);
|
||||
}
|
||||
}
|
||||
|
||||
if (ret < 0)
|
||||
goto cleanup;
|
||||
if (ret < 0)
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
if (virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_DEVICE)) {
|
||||
for (i = 0; i < vm->def->ndisks; i++) {
|
||||
|
Loading…
Reference in New Issue
Block a user