diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-29 15:35:36 -0800 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-29 15:35:36 -0800 |
commit | 1ce9515685408241495d7c6929bb37cb694d9006 (patch) | |
tree | 5b4356311def02211f800ef86dcadcd97ce2dc55 /indra/llmessage/llares.cpp | |
parent | 749eade1cb714728b7a98afdd94482603e121ea3 (diff) |
CID-306
Checker: UNINIT_CTOR
Function: LLAddrRecord::LLAddrRecord(LLResType, const std::basic_string<char, std::char_traits<char>, std::allocator<char>>&, unsigned int)
File: /indra/llmessage/llares.cpp
Diffstat (limited to 'indra/llmessage/llares.cpp')
-rw-r--r-- | indra/llmessage/llares.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/indra/llmessage/llares.cpp b/indra/llmessage/llares.cpp index 52edfc86b9..b29eb300fc 100644 --- a/indra/llmessage/llares.cpp +++ b/indra/llmessage/llares.cpp @@ -642,8 +642,10 @@ LLPtrRecord::LLPtrRecord(const std::string &name, unsigned ttl) } LLAddrRecord::LLAddrRecord(LLResType type, const std::string &name, - unsigned ttl) - : LLDnsRecord(type, name, ttl) + unsigned ttl) + : LLDnsRecord(type, name, ttl), + + mSize(0) { } |