diff options
| author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-27 11:53:17 -0800 | 
|---|---|---|
| committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-27 11:53:17 -0800 | 
| commit | 4cad6333ab447713e96fb14a278e529f5bc4f2a1 (patch) | |
| tree | 597cdec89a99019c82cb081c05926e0e199ab16d | |
| parent | f5344270f24702711df67f02160b9225d269669b (diff) | |
CID-417
 Checker: UNINIT_CTOR
Function: LLFoundData::LLFoundData()
File: /indra/newview/llappearancemgr.cpp
| -rw-r--r-- | indra/newview/llappearancemgr.cpp | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/indra/newview/llappearancemgr.cpp b/indra/newview/llappearancemgr.cpp index 1dec8c7bd8..8f4ce4498e 100644 --- a/indra/newview/llappearancemgr.cpp +++ b/indra/newview/llappearancemgr.cpp @@ -292,11 +292,11 @@ private:  struct LLFoundData  { -	LLFoundData() {} +	LLFoundData() : mAssetType(LLAssetType::AT_NONE), mWearable(NULL) {}  	LLFoundData(const LLUUID& item_id, -				const LLUUID& asset_id, -				const std::string& name, -				LLAssetType::EType asset_type) : +		    const LLUUID& asset_id, +		    const std::string& name, +		    LLAssetType::EType asset_type) :  		mItemID(item_id),  		mAssetID(asset_id),  		mName(name), | 
