SL-19649 reduce logging out time for larger inventories

meow-7.2.2
Maxim Nikolenko 2023-05-12 16:35:27 +03:00 committed by Andrey Kleshchev
parent 4dcab10bf8
commit d28e2c03a7
1 changed files with 4 additions and 2 deletions

View File

@ -576,8 +576,10 @@ void LLView::deleteAllChildren()
while (!mChildList.empty())
{
LLView* viewp = mChildList.front();
delete viewp; // will remove the child from mChildList
LLView* viewp = mChildList.front();
viewp->mParentView = NULL;
delete viewp;
mChildList.pop_front();
}
}