diff options
author | Rider Linden <none@none> | 2015-03-23 16:47:26 -0700 |
---|---|---|
committer | Rider Linden <none@none> | 2015-03-23 16:47:26 -0700 |
commit | 782b9a324d61e4e7814d9f7ce09b50e792c51788 (patch) | |
tree | 2db45c3aaf90410a7cbaafbe5d335ea73ae42be7 /indra/newview/llmaterialmgr.cpp | |
parent | 753d643daf4ff7407fbc7e23662b5c6e5ffbc96f (diff) |
No explicit NULL in shared constructor
Diffstat (limited to 'indra/newview/llmaterialmgr.cpp')
-rwxr-xr-x | indra/newview/llmaterialmgr.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llmaterialmgr.cpp b/indra/newview/llmaterialmgr.cpp index b4ebe4adb1..81372f10b3 100755 --- a/indra/newview/llmaterialmgr.cpp +++ b/indra/newview/llmaterialmgr.cpp @@ -130,9 +130,9 @@ LLMaterialMgr::LLMaterialMgr(): mGetAllCallbacks(), mPutQueue(), mMaterials(), - mHttpRequest(NULL), - mHttpHeaders(NULL), - mHttpOptions(NULL), + mHttpRequest(), + mHttpHeaders(), + mHttpOptions(), mHttpPolicy(LLCore::HttpRequest::DEFAULT_POLICY_ID), mHttpPriority(0) { |