diff options
author | Steven Bennetts <steve@lindenlab.com> | 2009-08-19 18:13:37 +0000 |
---|---|---|
committer | Steven Bennetts <steve@lindenlab.com> | 2009-08-19 18:13:37 +0000 |
commit | b4f174f9188e18ab66e0246ebd0bcf68fba9f067 (patch) | |
tree | 5168f5b0136d34d8fc9506130fdabf9c5867fee6 /indra/newview | |
parent | 3687ea869d5c49c08198fd33a657f384a5341976 (diff) |
EXT-591 Create an Object (Build tool) will crash viewer
EXT-599 Time of the sent messages is '00-00' in the Group chat
EXT-598 Acquired/created date for all landmarks is 01/01/1970
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llinventoryfilter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llinventoryfilter.cpp b/indra/newview/llinventoryfilter.cpp index f5525ec1f2..c41900d691 100644 --- a/indra/newview/llinventoryfilter.cpp +++ b/indra/newview/llinventoryfilter.cpp @@ -115,7 +115,7 @@ BOOL LLInventoryFilter::check(LLFolderViewItem* item) if (listener->getInventoryType() == LLInventoryType::IT_NONE) { const LLInventoryObject *obj = gInventory.getObject(listener->getUUID()); - if (!obj->getIsLinkType()) + if (obj && !obj->getIsLinkType()) { passed_type = TRUE; } |