diff options
author | Xiaohong Bao <bao@lindenlab.com> | 2012-01-12 20:32:32 -0700 |
---|---|---|
committer | Xiaohong Bao <bao@lindenlab.com> | 2012-01-12 20:32:32 -0700 |
commit | 11bd5cb86025376a198e45330116de4757b5c89e (patch) | |
tree | 7567b3f8d108c695187eda2ec254f3f1e88efc53 /indra/llmessage/llcurl.cpp | |
parent | f082de03ff24ae8cc6a2de103bc643c392135742 (diff) |
trivial: fix a mac build error.
Diffstat (limited to 'indra/llmessage/llcurl.cpp')
-rw-r--r-- | indra/llmessage/llcurl.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/indra/llmessage/llcurl.cpp b/indra/llmessage/llcurl.cpp index eab2874596..277c274f52 100644 --- a/indra/llmessage/llcurl.cpp +++ b/indra/llmessage/llcurl.cpp @@ -915,7 +915,7 @@ void LLCurlThread::CurlRequest::finishRequest(bool completed) } else { - mMulti->cleanup() ; //being idle too long, remove the request. + mCurlThread->cleanupMulti(mMulti) ; //being idle too long, remove the request. } mMulti = NULL ; @@ -976,6 +976,13 @@ void LLCurlThread::deleteMulti(LLCurl::Multi* multi) { delete multi ; } + +//private +void LLCurlThread::cleanupMulti(LLCurl::Multi* multi) +{ + multi->cleanup() ; +} + //------------------------------------------------------------ //static |