diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-29 14:34:21 -0800 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-29 14:34:21 -0800 |
commit | 73e62c0cb59f1234545b9aa96914426849c376f0 (patch) | |
tree | 3cc9020b5bb6ebdb844bfc54037657418db8ac96 /indra/llinventory/llnotecard.cpp | |
parent | 0faac6bd1492575dc1f82c916cd9a8a8d6bdb797 (diff) |
CID-332
Checker: UNINIT_CTOR
Function: LLNotecard::LLNotecard(int)
File: /indra/llinventory/llnotecard.cpp
Diffstat (limited to 'indra/llinventory/llnotecard.cpp')
-rw-r--r-- | indra/llinventory/llnotecard.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/llinventory/llnotecard.cpp b/indra/llinventory/llnotecard.cpp index 9e7e043761..f6e41eecb4 100644 --- a/indra/llinventory/llnotecard.cpp +++ b/indra/llinventory/llnotecard.cpp @@ -35,7 +35,9 @@ #include "llstreamtools.h" LLNotecard::LLNotecard(S32 max_text) -: mMaxText(max_text) + : mMaxText(max_text), + mVersion(0), + mEmbeddedVersion(0) { } |