VBOX: Start success is when both vm_pid and vm_pid_handle are non-zero values.

This commit is contained in:
Rom Walton 2014-01-23 07:30:16 -05:00
parent 38e83a3cd7
commit 4dda6f53e1
1 changed files with 2 additions and 2 deletions

View File

@ -1126,9 +1126,9 @@ int VBOX_VM::start() {
get_vm_process_id();
#ifdef _WIN32
if (!vm_pid && !vm_pid_handle) break;
if (vm_pid && vm_pid_handle) break;
#else
if (!vm_pid) break;
if (vm_pid) break;
#endif
if (timeout > 45) {