diff options
| author | Rider Linden <rider@lindenlab.com> | 2015-07-08 12:09:36 -0700 |
|---|---|---|
| committer | Rider Linden <rider@lindenlab.com> | 2015-07-08 12:09:36 -0700 |
| commit | fe5567639d7d4b6f13f66da0a1fb4bf2af295283 (patch) | |
| tree | ba03f2211b8206ed7b1ade5dc6ffb84d11104be3 /indra/newview/llxmlrpctransaction.cpp | |
| parent | 1138c57f9a8553903199e727912d7f1b092697e4 (diff) | |
Change HttpOptions::ptr_t to be shared_ptr<> rather than intrusive.
Diffstat (limited to 'indra/newview/llxmlrpctransaction.cpp')
| -rwxr-xr-x | indra/newview/llxmlrpctransaction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llxmlrpctransaction.cpp b/indra/newview/llxmlrpctransaction.cpp index 63ad4bd49b..5828aee7fc 100755 --- a/indra/newview/llxmlrpctransaction.cpp +++ b/indra/newview/llxmlrpctransaction.cpp @@ -390,7 +390,7 @@ void LLXMLRPCTransaction::Impl::init(XMLRPC_REQUEST request, bool useGzip) mHandler = LLXMLRPCTransaction::Handler::ptr_t(new Handler( mHttpRequest, this )); mPostH = mHttpRequest->requestPost(LLCore::HttpRequest::DEFAULT_POLICY_ID, 0, - mURI, body.get(), httpOpts.get(), httpHeaders, mHandler.get()); + mURI, body.get(), httpOpts, httpHeaders, mHandler.get()); } |
