Skip to content
Snippets Groups Projects
Commit 3743ec17 authored by Logan Dethrow's avatar Logan Dethrow
Browse files

LLProxy: Removed unneeded call to LLProxy::applyProxySettings, since it was already being called.

parent f73ec6a0
No related branches found
No related tags found
No related merge requests found
...@@ -438,7 +438,6 @@ void LLURLRequest::initialize() ...@@ -438,7 +438,6 @@ void LLURLRequest::initialize()
LLMemType m1(LLMemType::MTYPE_IO_URL_REQUEST); LLMemType m1(LLMemType::MTYPE_IO_URL_REQUEST);
mState = STATE_INITIALIZED; mState = STATE_INITIALIZED;
mDetail = new LLURLRequestDetail; mDetail = new LLURLRequestDetail;
LLProxy::getInstance()->applyProxySettings(mDetail->mCurlRequest);
mDetail->mCurlRequest->setopt(CURLOPT_NOSIGNAL, 1); mDetail->mCurlRequest->setopt(CURLOPT_NOSIGNAL, 1);
mDetail->mCurlRequest->setWriteCallback(&downCallback, (void*)this); mDetail->mCurlRequest->setWriteCallback(&downCallback, (void*)this);
mDetail->mCurlRequest->setReadCallback(&upCallback, (void*)this); mDetail->mCurlRequest->setReadCallback(&upCallback, (void*)this);
......
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