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

SH-2445 Potential fix for crash in LLCurl::Multi::~Multi -- lock sMultiMutex...

SH-2445 Potential fix for crash in LLCurl::Multi::~Multi -- lock sMultiMutex around curl_multi_ calls in LLCurl::Multi destructor
parent 2fba01d1
No related branches found
No related tags found
No related merge requests found
...@@ -553,6 +553,11 @@ LLCurl::Multi::~Multi() ...@@ -553,6 +553,11 @@ LLCurl::Multi::~Multi()
{ {
llassert(isStopped()); llassert(isStopped());
if (LLCurl::sMultiThreaded)
{
LLCurl::Easy::sMultiMutex->lock();
}
delete mSignal; delete mSignal;
mSignal = NULL; mSignal = NULL;
...@@ -573,6 +578,11 @@ LLCurl::Multi::~Multi() ...@@ -573,6 +578,11 @@ LLCurl::Multi::~Multi()
check_curl_multi_code(curl_multi_cleanup(mCurlMultiHandle)); check_curl_multi_code(curl_multi_cleanup(mCurlMultiHandle));
--gCurlMultiCount; --gCurlMultiCount;
if (LLCurl::sMultiThreaded)
{
LLCurl::Easy::sMultiMutex->unlock();
}
} }
CURLMsg* LLCurl::Multi::info_read(S32* msgs_in_queue) CURLMsg* LLCurl::Multi::info_read(S32* msgs_in_queue)
......
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