1
0
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:
Martin Kletzander 2013-07-01 09:23:04 +02:00
parent 350fd95f40
commit 556808ec9d

View File

@ -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++) {