Skip to content
Snippets Groups Projects
Commit f6ffda7a authored by Guido Günther's avatar Guido Günther
Browse files

vbox: fix a bug in _machineStateInactive

Closes: #770202
parent 66a3ca68
No related branches found
No related tags found
No related merge requests found
......@@ -23,3 +23,4 @@ security/CVE-2014-8136-qemu-migration-Unlock-vm-on-failed-ACL.patch
upstream/qemu-Fix-crash-in-tunnelled-migration.patch
lxc-Move-setting-ifname_guest_actual-to-virLXCSetupI.patch
lxc-Don-t-crash-on-NULL-ifname_guest_actual.patch
upstream/vbox-fix-a-bug-in-_machineStateInactive.patch
From: Yohan BELLEGUIC <yohan.belleguic@diateam.net>
Date: Wed, 19 Nov 2014 09:53:15 +0100
Subject: vbox: fix a bug in _machineStateInactive
This function returned non-inactive domains instead of active
domains. This broke virConnectNumOfDefinedDomains() and
virConnectListDefinedDomains() functions.
Closes: #770202
---
src/vbox/vbox_tmpl.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/vbox/vbox_tmpl.c b/src/vbox/vbox_tmpl.c
index e5d6d66..c42e186 100644
--- a/src/vbox/vbox_tmpl.c
+++ b/src/vbox/vbox_tmpl.c
@@ -6081,8 +6081,8 @@ static bool _machineStateOnline(PRUint32 state)
static bool _machineStateInactive(PRUint32 state)
{
- return ((state > MachineState_FirstOnline) &&
- (state < MachineState_LastOnline));
+ return ((state < MachineState_FirstOnline) ||
+ (state > MachineState_LastOnline));
}
static bool _machineStateNotStart(PRUint32 state)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment