Skip to content
Snippets Groups Projects
Commit 5cca6df5 authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Fix a crash in the inventory code

parent 4d79db52
No related branches found
No related tags found
2 merge requests!3Update to main branch,!2Rebase onto current main branch
...@@ -1058,7 +1058,7 @@ void LLInvFVBridge::getClipboardEntries(bool show_asset_id, ...@@ -1058,7 +1058,7 @@ void LLInvFVBridge::getClipboardEntries(bool show_asset_id,
} }
} }
if (obj->getType() != LLAssetType::AT_CATEGORY) if (obj && obj->getType() != LLAssetType::AT_CATEGORY)
{ {
items.push_back(std::string("Paste Separator")); items.push_back(std::string("Paste Separator"));
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment