Merge pull request #10516 from electron/fix_notification_crash

Fixed potential crash in Win32 notifications.
This commit is contained in:
Cheng Zhao 2017-09-22 12:29:53 +09:00 коммит произвёл GitHub
Родитель df098c2b2b af92a639be
Коммит ec587032b2
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -325,6 +325,7 @@ HWND DesktopNotificationController::GetToast(
const NotificationData* data) const {
auto it = find_if(instances_.cbegin(), instances_.cend(),
[data](auto&& inst) {
if (!inst.hwnd) return false;
auto toast = Toast::Get(inst.hwnd);
return data == toast->GetNotification().get();
});