diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 3b11c9ff7588713cc2dcdfe038ffc6a8396a4bb6..ea6842b62a9248c1143d229230f4232fbfd48f2f 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -1328,6 +1328,10 @@ bool LLAppViewer::frame() { ret = doFrame(); } + catch (const LLContinueError&) + { + LOG_UNHANDLED_EXCEPTION(""); + } catch (std::bad_alloc) { LLMemory::logMemoryInfo(TRUE); @@ -1341,7 +1345,14 @@ bool LLAppViewer::frame() } else { - ret = doFrame(); + try + { + ret = doFrame(); + } + catch (const LLContinueError&) + { + LOG_UNHANDLED_EXCEPTION(""); + } } return ret;