diff options
| author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-10-19 23:54:28 +0300 |
|---|---|---|
| committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-10-20 01:08:56 +0300 |
| commit | b7ad7ccaaa4f4ea5947e844ce87c13a8899f0aa1 (patch) | |
| tree | 1317883eed27eda8a0bf3477f1a125a8d09481ee /indra/newview/llenvironment.cpp | |
| parent | c4f3bc4e9523bb6fcfd2408868bf1907384a4f84 (diff) | |
SL-20506 Crash when recreating LLViewerParcelMedia
Diffstat (limited to 'indra/newview/llenvironment.cpp')
| -rw-r--r-- | indra/newview/llenvironment.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llenvironment.cpp b/indra/newview/llenvironment.cpp index 05c7decfbd..c562a5f512 100644 --- a/indra/newview/llenvironment.cpp +++ b/indra/newview/llenvironment.cpp @@ -2061,7 +2061,7 @@ void LLEnvironment::coroRequestEnvironment(S32 parcel_id, LLEnvironment::environ { LL_WARNS("ENVIRONMENT") << "Couldn't retrieve environment settings for " << ((parcel_id == INVALID_PARCEL_ID) ? ("region!") : ("parcel!")) << LL_ENDL; } - else if (LLApp::isExiting()) + else if (LLApp::isExiting() || gDisconnected) { return; } |
