diff options
author | Lukas Rusak <lorusak@gmail.com> | 2018-12-14 15:35:28 -0800 |
---|---|---|
committer | Lukas Rusak <lorusak@gmail.com> | 2018-12-14 15:35:51 -0800 |
commit | b9d3a90e2167e836127f49d0e7bd082427d65b1b (patch) | |
tree | a4f435ca4f2941c6a21ce554ecdeab874d855211 | |
parent | 0c2d5431050e1cf3bfa2139bfc0644049a60127b (diff) |
VideoPlayer: release reference to m_pInputStream after usage
-rw-r--r-- | xbmc/cores/VideoPlayer/VideoPlayer.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xbmc/cores/VideoPlayer/VideoPlayer.cpp b/xbmc/cores/VideoPlayer/VideoPlayer.cpp index 23ef74f165..db16727b42 100644 --- a/xbmc/cores/VideoPlayer/VideoPlayer.cpp +++ b/xbmc/cores/VideoPlayer/VideoPlayer.cpp @@ -4444,6 +4444,8 @@ bool CVideoPlayer::OnAction(const CAction &action) } } + pMenus.reset(); + switch (action.GetID()) { case ACTION_NEXT_ITEM: |