diff options
author | Dave Parks <davep@lindenlab.com> | 2011-10-14 12:38:48 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2011-10-14 12:38:48 -0500 |
commit | 4924f0c99b021869967f4587df703084d2bdc8ed (patch) | |
tree | ac9bcf265ddfc45cfbbd2db03ad1d17694952072 /indra/llmessage/llcurl.cpp | |
parent | c0ca8e5e2e4d3f591db3175f09c0b64b6b2e10c5 (diff) |
b782a75c99e6 backout cleanup
Diffstat (limited to 'indra/llmessage/llcurl.cpp')
-rw-r--r-- | indra/llmessage/llcurl.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/llmessage/llcurl.cpp b/indra/llmessage/llcurl.cpp index 6e063818e2..330028c926 100644 --- a/indra/llmessage/llcurl.cpp +++ b/indra/llmessage/llcurl.cpp @@ -531,7 +531,7 @@ LLCurl::Multi::Multi() mThreaded = LLCurl::sMultiThreaded && LLThread::currentID() == sMainThreadID; if (mThreaded) { - mSignal = new LLCondition(); + mSignal = new LLCondition(NULL); } else { @@ -1189,8 +1189,8 @@ void LLCurl::initClass(bool multi_threaded) check_curl_code(code); - Easy::sHandleMutex = new LLMutex(); - Easy::sMultiMutex = new LLMutex(); + Easy::sHandleMutex = new LLMutex(NULL); + Easy::sMultiMutex = new LLMutex(NULL); #if SAFE_SSL S32 mutex_count = CRYPTO_num_locks(); |