diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-02-03 20:44:32 +0000 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-02-03 20:44:32 +0000 |
commit | a788f758e44ef506a82af8a9dccb71578334cefb (patch) | |
tree | b2861fcc68134ee774b2ee561288ff950852b268 /indra/llxml | |
parent | 33a92be286e2b63f76b9a032e5912806d717959f (diff) |
CID-267
Checker: UNINIT_CTOR
Function: LLXMLNode::LLXMLNode(const LLXMLNode&)
File: /indra/llxml/llxmlnode.cpp
Diffstat (limited to 'indra/llxml')
-rw-r--r-- | indra/llxml/llxmlnode.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/llxml/llxmlnode.cpp b/indra/llxml/llxmlnode.cpp index 07cc612a0a..e4f6482fae 100644 --- a/indra/llxml/llxmlnode.cpp +++ b/indra/llxml/llxmlnode.cpp @@ -131,6 +131,8 @@ LLXMLNode::LLXMLNode(const LLXMLNode& rhs) : mPrecision(rhs.mPrecision), mType(rhs.mType), mEncoding(rhs.mEncoding), + mLineNumber(0), + mParser(NULL), mParent(NULL), mChildren(NULL), mAttributes(), |