Skip to content
Snippets Groups Projects
Commit 26a9a692 authored by David Parks's avatar David Parks
Browse files

SH-2031 Fix for sometimes deadlocking a curl thread.

parent e4a8ef4c
No related branches found
No related tags found
No related merge requests found
...@@ -683,7 +683,6 @@ void LLCurl::Multi::perform() ...@@ -683,7 +683,6 @@ void LLCurl::Multi::perform()
{ {
if (mPerformState == PERFORM_STATE_READY) if (mPerformState == PERFORM_STATE_READY)
{ {
mPerformState = PERFORM_STATE_PERFORMING;
mSignal->signal(); mSignal->signal();
} }
} }
...@@ -693,7 +692,7 @@ void LLCurl::Multi::run() ...@@ -693,7 +692,7 @@ void LLCurl::Multi::run()
while (!mQuitting) while (!mQuitting)
{ {
mSignal->wait(); mSignal->wait();
mPerformState = PERFORM_STATE_PERFORMING;
if (!mQuitting) if (!mQuitting)
{ {
S32 q = 0; S32 q = 0;
......
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