From 9c72470c17b611458898d1c4b07bee6f1aafb40d Mon Sep 17 00:00:00 2001 From: John Preston Date: Mon, 1 Jan 2018 22:12:38 +0300 Subject: [PATCH] Fix possible crash in player closing. --- Telegram/SourceFiles/mainwidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/mainwidget.cpp b/Telegram/SourceFiles/mainwidget.cpp index e2b35a091..77c470993 100644 --- a/Telegram/SourceFiles/mainwidget.cpp +++ b/Telegram/SourceFiles/mainwidget.cpp @@ -1728,7 +1728,7 @@ void MainWidget::closeBothPlayers() { if (_playerUsingPanel) { _playerUsingPanel = false; _player.destroyDelayed(); - } else { + } else if (_player) { _player->hide(anim::type::normal); } _playerVolume.destroyDelayed();