diff options
| author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-12-03 01:26:26 +0200 |
|---|---|---|
| committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-12-03 01:26:26 +0200 |
| commit | 18b664cd76bd849f0cf55865e4b57837c6d62ead (patch) | |
| tree | 9cd4f7c7e396bbfe8fcc2f53194ab5da61adc996 /indra/llui | |
| parent | 6d842526191ddd199fedfdc0404d648e89c644ba (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.cpp | 2 |
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; } } |
