changeset 146:7f242ec838fd src

do not stop the VM here, get_next_block will do that without races
author mroi
date Thu, 03 Apr 2003 12:55:22 +0000
parents 4d14c444c155
children 26334f5fac2b
files navigation.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/navigation.c	Thu Apr 03 12:48:30 2003 +0000
+++ b/navigation.c	Thu Apr 03 12:55:22 2003 +0000
@@ -194,7 +194,7 @@
   }
   
   pthread_mutex_lock(&this->vm_lock);
-  vm_stop(this->vm);
+  this->vm->stopped = 1;
   pthread_mutex_unlock(&this->vm_lock);
   return S_OK;
 }