mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-31 01:11:12 +02:00
Fix segfault in movieplayer (uninitialized variable)
This commit is contained in:
@@ -505,7 +505,7 @@ void CMoviePlayerGui::PlayFile(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
file_prozent = 0;
|
file_prozent = 0;
|
||||||
pthread_t thrStartHint;
|
pthread_t thrStartHint = 0;
|
||||||
if (is_file_player) {
|
if (is_file_player) {
|
||||||
showStartingHint = true;
|
showStartingHint = true;
|
||||||
pthread_create(&thrStartHint, NULL, CMoviePlayerGui::ShowStartHint, this);
|
pthread_create(&thrStartHint, NULL, CMoviePlayerGui::ShowStartHint, this);
|
||||||
|
Reference in New Issue
Block a user