diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2021-03-12 18:19:53 +0200 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2021-03-13 11:21:01 +0200 |
commit | ed98ebb8115bffc5cf78ec00e33adf2243c55f0d (patch) | |
tree | 53b5707a3581968fec002cc5c98b27d99b5181fa /indra/newview/llappviewer.cpp | |
parent | 4076208a72dbcb36adbdfcca86a9fbcc12d2bda3 (diff) |
SL-14961 Coroutine crash was not reported to bugsplat
Diffstat (limited to 'indra/newview/llappviewer.cpp')
-rw-r--r-- | indra/newview/llappviewer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index a1d73acfa5..7c2f622abd 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -5552,7 +5552,7 @@ void LLAppViewer::forceErrorDriverCrash() void LLAppViewer::forceErrorCoroutineCrash() { LL_WARNS() << "Forcing a crash in LLCoros" << LL_ENDL; - LLCoros::instance().launch("LLAppViewer::crashyCoro", [] {throw std::exception("A deliberate crash from LLCoros"); }); + LLCoros::instance().launch("LLAppViewer::crashyCoro", [] {throw LLException("A deliberate crash from LLCoros"); }); } void LLAppViewer::forceErrorThreadCrash() |