Skip to content
Snippets Groups Projects
Commit 1ce95156 authored by Tofu Linden's avatar Tofu Linden
Browse files

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
parent 749eade1
No related branches found
No related tags found
No related merge requests found
...@@ -642,8 +642,10 @@ LLPtrRecord::LLPtrRecord(const std::string &name, unsigned ttl) ...@@ -642,8 +642,10 @@ LLPtrRecord::LLPtrRecord(const std::string &name, unsigned ttl)
} }
LLAddrRecord::LLAddrRecord(LLResType type, const std::string &name, LLAddrRecord::LLAddrRecord(LLResType type, const std::string &name,
unsigned ttl) unsigned ttl)
: LLDnsRecord(type, name, ttl) : LLDnsRecord(type, name, ttl),
mSize(0)
{ {
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment