diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-09-18 22:30:03 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-09-18 22:30:39 +0300 |
commit | a1c215aa200840ebeed61ed7249c7f84620d9709 (patch) | |
tree | 099bc4471a8600794ec1efe5f3ce211f80a1c91b /indra/newview/llviewerwindow.cpp | |
parent | 1ce24d1b13170f1a05a39265a48e84ebc707bdba (diff) |
SL-13733 Crash: Do not unassign event handler before handling WM_DESTROY
Diffstat (limited to 'indra/newview/llviewerwindow.cpp')
-rw-r--r-- | indra/newview/llviewerwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp index f6c095681d..68ff191d88 100644 --- a/indra/newview/llviewerwindow.cpp +++ b/indra/newview/llviewerwindow.cpp @@ -2322,7 +2322,7 @@ void LLViewerWindow::shutdownGL() LLViewerWindow::~LLViewerWindow() { LL_INFOS() << "Destroying Window" << LL_ENDL; - gDebugWindowProc = TRUE; // event catching, at this point it shouldn't output at all + gDebugWindowProc = TRUE; // event catching, disable once we figure out cause for exit crashes destroyWindow(); delete mDebugText; |