summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorRye <rye@lindenlab.com>2024-11-06 04:55:33 -0500
committerGitHub <noreply@github.com>2024-11-06 04:55:33 -0500
commita1233239f8742fbe8e6e07a65d5fea0ea2f16001 (patch)
tree2b059e7abc0d58c7f353a2114e33dc4b13f265f1 /indra/newview
parent228937571ecdb7335e2ebf5de76aa256280b0bd5 (diff)
parent3550dc519cbc7a46a25b0597b128fe7e6ef67e27 (diff)
Merge pull request #3021 from Ansariel/develop_webrtc_shutdown_fix
Fix shutdown crash in LLWebRTCVoiceClient
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llvoicewebrtc.cpp2
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);
}