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()
{
if (mPerformState == PERFORM_STATE_READY)
{
mPerformState = PERFORM_STATE_PERFORMING;
mSignal->signal();
}
}
......@@ -693,7 +692,7 @@ void LLCurl::Multi::run()
while (!mQuitting)
{
mSignal->wait();
mPerformState = PERFORM_STATE_PERFORMING;
if (!mQuitting)
{
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