aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden
diff options
context:
space:
mode:
authorMcCabe Maxsted2011-05-09 19:01:48 -0700
committerMcCabe Maxsted2011-06-08 22:00:14 -0700
commit74732c7d109cb0e7e675ca91e83cf321d6966d44 (patch)
tree47a2c5c327104e0bfa67977e66aae2a61dba18b2 /linden
parentInv cleanup phase 2: death to goto (diff)
downloadmeta-impy-74732c7d109cb0e7e675ca91e83cf321d6966d44.zip
meta-impy-74732c7d109cb0e7e675ca91e83cf321d6966d44.tar.gz
meta-impy-74732c7d109cb0e7e675ca91e83cf321d6966d44.tar.bz2
meta-impy-74732c7d109cb0e7e675ca91e83cf321d6966d44.tar.xz
Fixed unitiliazed variables in llinventorymodel class
Diffstat (limited to 'linden')
-rw-r--r--linden/indra/newview/llinventorymodel.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/linden/indra/newview/llinventorymodel.cpp b/linden/indra/newview/llinventorymodel.cpp
index ceebc19..962b93d 100644
--- a/linden/indra/newview/llinventorymodel.cpp
+++ b/linden/indra/newview/llinventorymodel.cpp
@@ -186,7 +186,15 @@ LLInventoryModel gInventory;
186// Default constructor 186// Default constructor
187LLInventoryModel::LLInventoryModel() : 187LLInventoryModel::LLInventoryModel() :
188 mModifyMask(LLInventoryObserver::ALL), 188 mModifyMask(LLInventoryObserver::ALL),
189 mChangedItemIDs(),
190 mCategoryMap(),
191 mItemMap(),
192 mCategoryLock(),
193 mItemLock(),
189 mLastItem(NULL), 194 mLastItem(NULL),
195 mParentChildCategoryTree(),
196 mParentChildItemTree(),
197 mObservers(),
190 mIsAgentInvUsable(false) 198 mIsAgentInvUsable(false)
191{ 199{
192} 200}