diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-12-01 17:08:35 +0200 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-12-01 17:08:35 +0200 |
commit | 6d06c8b9de4708c4b8d8c68ae5fe4d753b9d70ca (patch) | |
tree | 6a2e3626818a0786f8da2cfbce2a25be0eab70c0 /indra | |
parent | 54a5e4de5790e0cbe1198d8242dc6517ee9b58c7 (diff) |
SL-13733 One more vivox shutdown crash #2
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llvoicevivox.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/llvoicevivox.cpp b/indra/newview/llvoicevivox.cpp index 0c4450bea8..f9ffefd4a2 100644 --- a/indra/newview/llvoicevivox.cpp +++ b/indra/newview/llvoicevivox.cpp @@ -1001,6 +1001,11 @@ bool LLVivoxVoiceClient::provisionVoiceAccount() // *TODO* Pump a message for wake up. llcoro::suspend(); } + + if (sShuttingDown) + { + return false; + } std::string url = gAgent.getRegionCapability("ProvisionVoiceAccountRequest"); |