diff options
author | Ansariel <ansariel.hiller@phoenixviewer.com> | 2024-11-05 21:56:17 +0100 |
---|---|---|
committer | Ansariel <ansariel.hiller@phoenixviewer.com> | 2024-11-05 21:56:17 +0100 |
commit | 3550dc519cbc7a46a25b0597b128fe7e6ef67e27 (patch) | |
tree | 9cf9426b1fb5d46259151815c9e9d7384f457513 /indra/newview | |
parent | ef4b74e3162ed3ea3757cddb1a90ca572d021024 (diff) |
Fix shutdown crash in LLWebRTCVoiceClient
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llvoicewebrtc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llvoicewebrtc.cpp b/indra/newview/llvoicewebrtc.cpp index 66fa3d6921..c7e246b3bf 100644 --- a/indra/newview/llvoicewebrtc.cpp +++ b/indra/newview/llvoicewebrtc.cpp @@ -303,7 +303,7 @@ void LLWebRTCVoiceClient::stopTimer() { if (mIsTimerActive) { - LLMuteList::instanceExists(); + if (LLMuteList::instanceExists()) { LLMuteList::getInstance()->removeObserver(this); } |