aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llinventorymodel.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/linden/indra/newview/llinventorymodel.cpp b/linden/indra/newview/llinventorymodel.cpp
index dc216e3..3f74965 100644
--- a/linden/indra/newview/llinventorymodel.cpp
+++ b/linden/indra/newview/llinventorymodel.cpp
@@ -2197,6 +2197,9 @@ bool LLInventoryModel::loadSkeleton(const LLInventoryModel::options_t& options,
2197 2197
2198 if (cit == temp_cats.end()) 2198 if (cit == temp_cats.end())
2199 { 2199 {
2200 llwarns << "Can't load " << inventory_filename
2201 << " because cit == temp_cats.end()"
2202 << llendl;
2200 continue; // cache corruption?? not sure why this happens -SJB 2203 continue; // cache corruption?? not sure why this happens -SJB
2201 } 2204 }
2202 LLViewerInventoryCategory* tcat = *cit; 2205 LLViewerInventoryCategory* tcat = *cit;
@@ -2205,6 +2208,9 @@ bool LLInventoryModel::loadSkeleton(const LLInventoryModel::options_t& options,
2205 // not sent down in the skeleton. 2208 // not sent down in the skeleton.
2206 if (cit == not_cached) 2209 if (cit == not_cached)
2207 { 2210 {
2211 llwarns << "Can't load " << inventory_filename
2212 << " because cit == not_cached"
2213 << llendl;
2208 continue; 2214 continue;
2209 } 2215 }
2210 2216