From 7b3a9f754ee26c6f60addb77e6ab2ac6bdcb64a6 Mon Sep 17 00:00:00 2001 From: Viktor Mihajlovski Date: Wed, 23 Jan 2013 14:55:15 +0100 Subject: [PATCH] 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 --- src/qemu/qemu_driver.c | 1 + 1 file changed, 1 insertion(+) 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; } -- GitLab