From b631d09a405a055af70ab0e841bf76b80a5f9ee5 Mon Sep 17 00:00:00 2001 From: John Preston Date: Mon, 9 Sep 2019 10:37:22 +0300 Subject: [PATCH] Fix possible crash in event loop nesting. --- Telegram/SourceFiles/core/sandbox.cpp | 6 ++-- .../platform/win/windows_event_filter.cpp | 31 ++++++++++--------- 2 files changed, 20 insertions(+), 17 deletions(-) diff --git a/Telegram/SourceFiles/core/sandbox.cpp b/Telegram/SourceFiles/core/sandbox.cpp index b02f8668a..2409308dc 100644 --- a/Telegram/SourceFiles/core/sandbox.cpp +++ b/Telegram/SourceFiles/core/sandbox.cpp @@ -534,9 +534,9 @@ void Sandbox::processPostponedCalls(int level) { } bool Sandbox::nativeEventFilter( - const QByteArray &eventType, - void *message, - long *result) { + const QByteArray &eventType, + void *message, + long *result) { registerEnterFromEventLoop(); return false; } diff --git a/Telegram/SourceFiles/platform/win/windows_event_filter.cpp b/Telegram/SourceFiles/platform/win/windows_event_filter.cpp index 230a5652e..c3024d1c2 100644 --- a/Telegram/SourceFiles/platform/win/windows_event_filter.cpp +++ b/Telegram/SourceFiles/platform/win/windows_event_filter.cpp @@ -8,6 +8,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL #include "platform/win/windows_event_filter.h" #include "platform/win/windows_dlls.h" +#include "core/sandbox.h" #include "mainwindow.h" #include "main/main_session.h" @@ -55,21 +56,23 @@ bool EventFilter::nativeEventFilter( const QByteArray &eventType, void *message, long *result) { - const auto msg = static_cast(message); - if (msg->message == WM_ENDSESSION) { - App::quit(); + return Core::Sandbox::Instance().customEnterFromEventLoop([&] { + const auto msg = static_cast(message); + if (msg->message == WM_ENDSESSION) { + App::quit(); + return false; + } + if (msg->hwnd == _window->psHwnd() + || msg->hwnd && !_window->psHwnd()) { + return mainWindowEvent( + msg->hwnd, + msg->message, + msg->wParam, + msg->lParam, + (LRESULT*)result); + } return false; - } - if (msg->hwnd == _window->psHwnd() - || msg->hwnd && !_window->psHwnd()) { - return mainWindowEvent( - msg->hwnd, - msg->message, - msg->wParam, - msg->lParam, - (LRESULT*)result); - } - return false; + }); } bool EventFilter::mainWindowEvent(