diff options
author | chriszero <zerov83@gmail.com> | 2015-01-19 18:46:16 +0100 |
---|---|---|
committer | chriszero <zerov83@gmail.com> | 2015-01-19 18:46:16 +0100 |
commit | 4592c5e98c96f46157ce46206ba4005a95f7f774 (patch) | |
tree | 3a78aa0b63acc388a79fc53b5ac1793cae002a84 | |
parent | 8d7655c7eb7086a56b7722908291c163d596843d (diff) | |
download | vdr-plugin-plex-4592c5e98c96f46157ce46206ba4005a95f7f774.tar.gz vdr-plugin-plex-4592c5e98c96f46157ce46206ba4005a95f7f774.tar.bz2 |
Fixes segfault in plugin 3dcontrol.
-rw-r--r-- | hlsPlayerControl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hlsPlayerControl.cpp b/hlsPlayerControl.cpp index 5144649..b4b93df 100644 --- a/hlsPlayerControl.cpp +++ b/hlsPlayerControl.cpp @@ -31,7 +31,7 @@ cHlsPlayerControl::cHlsPlayerControl(cHlsPlayer* Player, plexclient::Video* Vide lastSpeed = -2; // an invalid value timeoutShow = 0; - cStatus::MsgReplaying(this, m_title.c_str(), NULL, true); + cStatus::MsgReplaying(this, m_title.c_str(), Video->m_pMedia->m_sPartFile.c_str(), true); } cHlsPlayerControl::~cHlsPlayerControl() |