summaryrefslogtreecommitdiff
path: root/indra/newview/llinventoryfunctions.cpp
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2011-01-19 12:48:04 -0500
committerOz Linden <oz@lindenlab.com>2011-01-19 12:48:04 -0500
commit061b04132ddf96dc55f962add8bf254bba54bd46 (patch)
treefc9b743ae37b198cd8199a8fcf2a906e55a82c64 /indra/newview/llinventoryfunctions.cpp
parent6b7a7081c31607bada575dd2f0a226bc5d721fc2 (diff)
parentfde14fa53289d6bad4e3e91930115d7e249f71b8 (diff)
pull changes back from beta
Diffstat (limited to 'indra/newview/llinventoryfunctions.cpp')
-rw-r--r--indra/newview/llinventoryfunctions.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/llinventoryfunctions.cpp b/indra/newview/llinventoryfunctions.cpp
index ef20869114..61d0a150b7 100644
--- a/indra/newview/llinventoryfunctions.cpp
+++ b/indra/newview/llinventoryfunctions.cpp
@@ -686,6 +686,12 @@ bool LLFindWearablesEx::operator()(LLInventoryCategory* cat, LLInventoryItem* it
return false;
}
+ // Skip broken links.
+ if (vitem->getIsBrokenLink())
+ {
+ return false;
+ }
+
return (bool) get_is_item_worn(item->getUUID()) == mIsWorn;
}