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/llaudio | |
| 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/llaudio')
| -rw-r--r-- | indra/llaudio/llaudioengine.cpp | 2 | ||||
| -rw-r--r-- | indra/llaudio/llstreamingaudio_fmodstudio.cpp | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/indra/llaudio/llaudioengine.cpp b/indra/llaudio/llaudioengine.cpp index 2a00fe7c5a..9e897a7ce8 100644 --- a/indra/llaudio/llaudioengine.cpp +++ b/indra/llaudio/llaudioengine.cpp @@ -276,7 +276,7 @@ void LLAudioEngine::idle(F32 max_decode_time)  		{  			// The source is done playing, clean it up.  			delete sourcep; -			mAllSources.erase(iter++); +            iter = mAllSources.erase(iter);  			continue;  		} diff --git a/indra/llaudio/llstreamingaudio_fmodstudio.cpp b/indra/llaudio/llstreamingaudio_fmodstudio.cpp index 7d176e7582..85577992a6 100644 --- a/indra/llaudio/llstreamingaudio_fmodstudio.cpp +++ b/indra/llaudio/llstreamingaudio_fmodstudio.cpp @@ -138,7 +138,7 @@ void LLStreamingAudio_FMODSTUDIO::killDeadStreams()          {              LL_INFOS("FMOD") << "Closed dead stream" << LL_ENDL;              delete streamp; -            mDeadStreams.erase(iter++); +            iter = mDeadStreams.erase(iter);          }          else          { | 
