Fix segfault in movieplayer (uninitialized variable)

Origin commit data
------------------
Commit: 347ac82e50
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2013-09-04 (Wed, 04 Sep 2013)
This commit is contained in:
Michael Liebmann
2013-09-04 02:20:59 +02:00
parent 4325aae387
commit 8029acbbea

View File

@@ -505,7 +505,7 @@ void CMoviePlayerGui::PlayFile(void)
}
file_prozent = 0;
pthread_t thrStartHint;
pthread_t thrStartHint = 0;
if (is_file_player) {
showStartingHint = true;
pthread_create(&thrStartHint, NULL, CMoviePlayerGui::ShowStartHint, this);