diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-29 15:13:06 -0800 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-29 15:13:06 -0800 |
commit | c99025f68f5a1433488b67915070056055f325fe (patch) | |
tree | dfafd56659d658a6d0be4a012472fdf0186f3ba1 /indra | |
parent | 3064b556ef56ffceda2c11217ac635ee18559751 (diff) |
CID-314
Checker: UNINIT_CTOR
Function: LLHTTPResponseHeader::LLHTTPResponseHeader()
File: /indra/llmessage/lliohttpserver.cpp
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llmessage/lliohttpserver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmessage/lliohttpserver.cpp b/indra/llmessage/lliohttpserver.cpp index 97134bd336..3b1ff414bc 100644 --- a/indra/llmessage/lliohttpserver.cpp +++ b/indra/llmessage/lliohttpserver.cpp @@ -403,7 +403,7 @@ void LLHTTPPipe::unlockChain() class LLHTTPResponseHeader : public LLIOPipe { public: - LLHTTPResponseHeader() {} + LLHTTPResponseHeader() : mCode(0) {} virtual ~LLHTTPResponseHeader() {} protected: |