Fix TracePlayer::PlayTraceOnThread not signifying it's done with the trace if a break is pending.

This commit is contained in:
Dr. Chat 2015-12-22 15:46:39 -06:00
parent a4f6e60e20
commit cde39953ab
1 changed files with 1 additions and 0 deletions

View File

@ -156,6 +156,7 @@ void TracePlayer::PlayTraceOnThread(const uint8_t* trace_data,
pending_packet = nullptr; pending_packet = nullptr;
} }
if (pending_break) { if (pending_break) {
playing_trace_ = false;
return; return;
} }
break; break;