Prevent duplicate "finish" threading messages

As they don't get processed and may show up as a memory leak.
This commit is contained in:
Jon Siwek 2019-12-27 07:35:59 -08:00
parent 3742e5601c
commit 9e07b8a9f1
2 changed files with 4 additions and 1 deletions

View file

@ -306,6 +306,7 @@ private:
bool main_finished; // Main thread is finished, meaning child_finished propagated back through message queue.
bool child_finished; // Child thread is finished.
bool child_sent_finish; // Child thread asked to be finished.
bool failed; // Set to true when a command failed.
};