mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-28 07:51:11 +02:00
Merge branch 'pu/mp' of https://github.com/tuxbox-neutrino/gui-neutrino into ni/mp/tuxbox
Conflicts:
data/locale/english.locale
data/pictures/backgrounds/1280x720/shutdown.jpg
src/Makefile.am
src/zapit/src/frontend.cpp
Origin commit data
------------------
Commit: 40e46a0df3
Author: vanhofen <vanhofen@gmx.de>
Date: 2017-03-15 (Wed, 15 Mar 2017)
This commit is contained in:
@@ -267,8 +267,11 @@ bool CStreamManager::Stop()
|
||||
if (!running)
|
||||
return false;
|
||||
running = false;
|
||||
cancel();
|
||||
bool ret = (OpenThreads::Thread::join() == 0);
|
||||
bool ret = false;
|
||||
if (OpenThreads::Thread::CurrentThread() == this) {
|
||||
cancel();
|
||||
ret = (OpenThreads::Thread::join() == 0);
|
||||
}
|
||||
StopAll();
|
||||
return ret;
|
||||
}
|
||||
|
Reference in New Issue
Block a user