diff options
| author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-05-20 00:14:12 +0300 | 
|---|---|---|
| committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-05-20 01:35:40 +0300 | 
| commit | d1265cda36f31d0273b0cd57e1e6c762dfc0b29f (patch) | |
| tree | ce57291125a3a4691cf017ebfaa19180fe3b8bbe /indra/llplugin | |
| parent | ed74d15246ded84ded3a096046d79e95352b444e (diff) | |
SL-17425 Crash when closing two dependent floaters
dependent_it in llfloater was not valid after dependent floater removed itself from the list
Diffstat (limited to 'indra/llplugin')
| -rw-r--r-- | indra/llplugin/llpluginprocessparent.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/llplugin/llpluginprocessparent.cpp b/indra/llplugin/llpluginprocessparent.cpp index eef22156bc..1fbbad06d4 100644 --- a/indra/llplugin/llpluginprocessparent.cpp +++ b/indra/llplugin/llpluginprocessparent.cpp @@ -999,7 +999,7 @@ void LLPluginProcessParent::poll(F64 timeout)      while (itClean != sInstances.end())      {          if ((*itClean).second->isDone()) -            sInstances.erase(itClean++); +            itClean = sInstances.erase(itClean);          else              ++itClean;      } | 
