Skip to content
Snippets Groups Projects
Commit 661d5959 authored by Andrey Lihatskiy's avatar Andrey Lihatskiy Committed by Andrey Kleshchev
Browse files

SL-13497 Fixed error in logic

parent 24d45174
No related branches found
No related tags found
No related merge requests found
...@@ -154,9 +154,9 @@ void LLPluginProcessParent::shutdown() ...@@ -154,9 +154,9 @@ void LLPluginProcessParent::shutdown()
{ {
EState state = (*it).second->mState; EState state = (*it).second->mState;
if (state != STATE_CLEANUP if (state != STATE_CLEANUP
|| state != STATE_EXITING && state != STATE_EXITING
|| state != STATE_DONE && state != STATE_DONE
|| state != STATE_ERROR) && state != STATE_ERROR)
{ {
(*it).second->setState(STATE_GOODBYE); (*it).second->setState(STATE_GOODBYE);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment