diff options
author | McCabe Maxsted | 2011-05-09 19:01:48 -0700 |
---|---|---|
committer | McCabe Maxsted | 2011-06-08 22:00:14 -0700 |
commit | 74732c7d109cb0e7e675ca91e83cf321d6966d44 (patch) | |
tree | 47a2c5c327104e0bfa67977e66aae2a61dba18b2 /linden | |
parent | Inv cleanup phase 2: death to goto (diff) | |
download | meta-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.cpp | 8 |
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 |
187 | LLInventoryModel::LLInventoryModel() : | 187 | LLInventoryModel::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 | } |