diff options
| author | Cosmic Linden <cosmic@lindenlab.com> | 2023-03-30 09:16:00 -0700 | 
|---|---|---|
| committer | Cosmic Linden <cosmic@lindenlab.com> | 2023-03-30 09:16:00 -0700 | 
| commit | 35acfb15b6694accd836c6f33cae8f714dc668f6 (patch) | |
| tree | 1f408586e888bd3bde5a9fa4477f5f84cf52747a | |
| parent | 8018e7935a8c25a92d700aeceb3d8f75d3ea5f16 (diff) | |
SL-19331: Unlock mutex when bailing out from bad (hopefully doesn't happen) media state
| -rw-r--r-- | indra/newview/llviewermedia.cpp | 19 | 
1 files changed, 9 insertions, 10 deletions
diff --git a/indra/newview/llviewermedia.cpp b/indra/newview/llviewermedia.cpp index d7426b7092..969f0a3594 100644 --- a/indra/newview/llviewermedia.cpp +++ b/indra/newview/llviewermedia.cpp @@ -1661,13 +1661,14 @@ void LLViewerMediaImpl::destroyMediaSource()  	cancelMimeTypeProbe(); -    mLock.lock();   // Delay tear-down while bg thread is updating -	if(mMediaSource) -	{ -		mMediaSource->setDeleteOK(true) ; -		mMediaSource = NULL; // shared pointer -	} -    mLock.unlock(); +    { +        LLMutexLock lock(&mLock); // Delay tear-down while bg thread is updating +        if(mMediaSource) +        { +            mMediaSource->setDeleteOK(true) ; +            mMediaSource = NULL; // shared pointer +        } +    }  }  ////////////////////////////////////////////////////////////////////////////////////////// @@ -2962,7 +2963,7 @@ bool LLViewerMediaImpl::preMediaTexUpdate(LLViewerMediaTexture*& media_tex, U8*&  void LLViewerMediaImpl::doMediaTexUpdate(LLViewerMediaTexture* media_tex, U8* data, S32 data_width, S32 data_height, S32 x_pos, S32 y_pos, S32 width, S32 height, bool sync)  {      LL_PROFILE_ZONE_SCOPED_CATEGORY_MEDIA; -    mLock.lock();   // don't allow media source tear-down during update +    LLMutexLock lock(&mLock); // don't allow media source tear-down during update      const LLGLuint tex_name = media_tex->getGLTexture() ? media_tex->getGLTexture()->getTexName() : (LLGLuint)0;      if (!tex_name) @@ -2989,8 +2990,6 @@ void LLViewerMediaImpl::doMediaTexUpdate(LLViewerMediaTexture* media_tex, U8* da      // release the data pointer before freeing raw so LLImageRaw destructor doesn't      // free memory at data pointer      raw->releaseData(); - -    mLock.unlock();  }  //////////////////////////////////////////////////////////////////////////////////////////  | 
