From: Viktor Mihajlovski Date: Wed, 23 Jan 2013 13:55:15 +0000 (+0100) Subject: qemu: Re-add driver unlock to qemuDomainSendKey X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=7b3a9f754ee26c6f60addb77e6ab2ac6bdcb64a6;p=libvirt.git qemu: Re-add driver unlock to qemuDomainSendKey Should have been done in commit 56fd513 already, but was missed due to oversight: qemuDomainSendKey didn't release the driver lock in its cleanup section. This fixes an issue introduced by commit 8c5d2ba. Signed-off-by: Viktor Mihajlovski --- diff --git a/src/qemu/qemu_driver.c b/src/qemu/qemu_driver.c index 72907d212f..6d4c1e9f18 100644 --- a/src/qemu/qemu_driver.c +++ b/src/qemu/qemu_driver.c @@ -2439,6 +2439,7 @@ endjob: cleanup: if (vm) virObjectUnlock(vm); + qemuDriverUnlock(driver); return ret; }