summaryrefslogtreecommitdiff
path: root/indra/llui
diff options
context:
space:
mode:
authorAndrey Kleshchev <andreykproductengine@lindenlab.com>2020-12-03 01:26:26 +0200
committerAndrey Kleshchev <andreykproductengine@lindenlab.com>2020-12-03 01:26:26 +0200
commit18b664cd76bd849f0cf55865e4b57837c6d62ead (patch)
tree9cd4f7c7e396bbfe8fcc2f53194ab5da61adc996 /indra/llui
parent6d842526191ddd199fedfdc0404d648e89c644ba (diff)
SL-14270 A bit of cleanup #3
Just in case and for clarity
Diffstat (limited to 'indra/llui')
-rw-r--r--indra/llui/llfolderviewmodel.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/llui/llfolderviewmodel.cpp b/indra/llui/llfolderviewmodel.cpp
index a028a32704..a2ac9ffaa0 100644
--- a/indra/llui/llfolderviewmodel.cpp
+++ b/indra/llui/llfolderviewmodel.cpp
@@ -52,11 +52,13 @@ LLFolderViewModelItemCommon::~LLFolderViewModelItemCommon()
{
// Children don't belong to model, but to LLFolderViewItem, just mark them as having no parent
std::for_each(mChildren.begin(), mChildren.end(), [](LLFolderViewModelItem* c) {c->setParent(NULL); });
+ mChildren.clear();
// Don't leave dead pointer in parent
if (mParent)
{
mParent->removeChild(this);
+ mParent = NULL;
}
}