diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-29 15:34:06 -0800 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-29 15:34:06 -0800 |
commit | 749eade1cb714728b7a98afdd94482603e121ea3 (patch) | |
tree | 284f37533eced4bff09411cccf579a264b3069f3 /indra/llmessage/llares.cpp | |
parent | 641f292a5ada637da3729c77ebfccd6b7edab538 (diff) |
CID-307
Checker: UNINIT_CTOR
Function: LLQueryResponder::LLQueryResponder()
File: /indra/llmessage/llares.cpp
Diffstat (limited to 'indra/llmessage/llares.cpp')
-rw-r--r-- | indra/llmessage/llares.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llmessage/llares.cpp b/indra/llmessage/llares.cpp index 104629c157..52edfc86b9 100644 --- a/indra/llmessage/llares.cpp +++ b/indra/llmessage/llares.cpp @@ -175,7 +175,8 @@ void LLAres::rewriteURI(const std::string &uri, UriRewriteResponder *resp) LLQueryResponder::LLQueryResponder() : LLAres::QueryResponder(), - mResult(ARES_ENODATA) + mResult(ARES_ENODATA), + mType(RES_INVALID) { } |