Version 1.7.3: Fix possible stack overflow.

This commit is contained in:
John Preston 2019-06-01 12:30:38 +03:00
parent 9fce11b672
commit caf1af8963
1 changed files with 3 additions and 1 deletions

View File

@ -65,6 +65,7 @@ struct Instance::Streamed {
Streaming::Player player;
Streaming::Information info;
View::PlaybackProgress progress;
bool clearing = false;
};
Instance::Streamed::Streamed(
@ -164,9 +165,10 @@ void Instance::setCurrent(const AudioMsgId &audioId) {
}
void Instance::clearStreamed(not_null<Data*> data) {
if (!data->streamed) {
if (!data->streamed || data->streamed->clearing) {
return;
}
data->streamed->clearing = true;
data->streamed->player.stop();
data->isPlaying = false;
requestRoundVideoResize();