We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4b700c commit 61c40e2Copy full SHA for 61c40e2
engines/parallaction/exec.cpp
@@ -193,8 +193,10 @@ void CommandExec::runSuspended() {
193
debugC(3, kDebugExec, "CommandExec::runSuspended()");
194
195
_execZone = _suspendedCtxt._zone;
196
- runList(_suspendedCtxt._first, _suspendedCtxt._last);
+ CommandList::iterator first = _suspendedCtxt._first;
197
+ CommandList::iterator last = _suspendedCtxt._last;
198
cleanSuspendedList();
199
+ runList(first, last);
200
}
201
202
0 commit comments