diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-26 17:53:03 -0800 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-26 17:53:03 -0800 |
commit | cbbfe761caffdd292c464db7b015a50a4ed5e731 (patch) | |
tree | e290223806b76391c3672f18fdef15d42e255179 /indra | |
parent | 5d2da8a4d01c86141c6fa067194969e85dc68765 (diff) |
CID-395 Checker: UNINIT_CTOR
Function: LLPanelEstateCovenant::LLPanelEstateCovenant()
File: /indra/newview/llfloaterregioninfo.cpp
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llfloaterregioninfo.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llfloaterregioninfo.cpp b/indra/newview/llfloaterregioninfo.cpp index 03ff2cc370..85353ce308 100644 --- a/indra/newview/llfloaterregioninfo.cpp +++ b/indra/newview/llfloaterregioninfo.cpp @@ -2544,7 +2544,9 @@ bool LLPanelEstateInfo::onMessageCommit(const LLSD& notification, const LLSD& re } LLPanelEstateCovenant::LLPanelEstateCovenant() -: mCovenantID(LLUUID::null) + : + mCovenantID(LLUUID::null), + mAssetStatus(ASSET_ERROR) { } |