summaryrefslogtreecommitdiffstats
path: root/src/uscxml/interpreter
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-04-05 12:24:46 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-04-05 12:24:46 (GMT)
commit48009e6bafca54d117bee81ea2a8b41f2aae1d70 (patch)
treee791f120ce5de86484c8fb3c3d5bc2163e8773d0 /src/uscxml/interpreter
parent5a7c8fd646d77139f216755085e1252a1dee334d (diff)
downloaduscxml-48009e6bafca54d117bee81ea2a8b41f2aae1d70.zip
uscxml-48009e6bafca54d117bee81ea2a8b41f2aae1d70.tar.gz
uscxml-48009e6bafca54d117bee81ea2a8b41f2aae1d70.tar.bz2
Redownloaded tests and fixed some more w3c issues
Diffstat (limited to 'src/uscxml/interpreter')
-rw-r--r--src/uscxml/interpreter/InterpreterDraft6.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/uscxml/interpreter/InterpreterDraft6.cpp b/src/uscxml/interpreter/InterpreterDraft6.cpp
index 453e64f..2f05be9 100644
--- a/src/uscxml/interpreter/InterpreterDraft6.cpp
+++ b/src/uscxml/interpreter/InterpreterDraft6.cpp
@@ -13,8 +13,10 @@ void InterpreterDraft6::interpret() {
if (!_isInitialized)
init();
- if (!_scxml)
+ if (!_scxml) {
+ _mutex.unlock();
return;
+ }
// dump();
if (_sessionId.length() == 0)