diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-02-03 20:45:53 +0000 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-02-03 20:45:53 +0000 |
commit | b7405a144ec88943a3781d41cc0768fdb323df6c (patch) | |
tree | ef0b8eef7e9e81a21cfa9aa5557b81402c91baf2 /indra/llxml | |
parent | a788f758e44ef506a82af8a9dccb71578334cefb (diff) |
CID-266
Checker: UNINIT_CTOR
Function: LLXmlTreeParser::LLXmlTreeParser(LLXmlTree *)
File: /indra/llxml/llxmltree.cpp
Diffstat (limited to 'indra/llxml')
-rw-r--r-- | indra/llxml/llxmltree.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llxml/llxmltree.cpp b/indra/llxml/llxmltree.cpp index 1bce5d29f7..bc2690deff 100644 --- a/indra/llxml/llxmltree.cpp +++ b/indra/llxml/llxmltree.cpp @@ -510,7 +510,8 @@ LLXmlTreeParser::LLXmlTreeParser(LLXmlTree* tree) : mTree(tree), mRoot( NULL ), mCurrent( NULL ), - mDump( FALSE ) + mDump( FALSE ), + mKeepContents(FALSE) { } |