diff options
author | CastagnaIT <gottardo.stefano.83@gmail.com> | 2022-07-06 15:57:15 +0200 |
---|---|---|
committer | CastagnaIT <gottardo.stefano.83@gmail.com> | 2022-07-06 15:57:15 +0200 |
commit | d8d31fe673365aebd4c06d532f46e6e3276f06c0 (patch) | |
tree | bff55c30ab6cc179715055f5322f856b58343fad | |
parent | c57641461bbe6b86f3387deea7a9f80d2a8131fa (diff) |
[Subtitles][WebVTT] Fix variable initialization
-rw-r--r-- | xbmc/cores/VideoPlayer/DVDSubtitles/webvtt/WebVTTHandler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/cores/VideoPlayer/DVDSubtitles/webvtt/WebVTTHandler.h b/xbmc/cores/VideoPlayer/DVDSubtitles/webvtt/WebVTTHandler.h index 085113a03e..c7d47e004e 100644 --- a/xbmc/cores/VideoPlayer/DVDSubtitles/webvtt/WebVTTHandler.h +++ b/xbmc/cores/VideoPlayer/DVDSubtitles/webvtt/WebVTTHandler.h @@ -194,5 +194,5 @@ private: std::vector<webvttCssStyle> m_cueCssStyles; bool m_CSSColorsLoaded{false}; std::vector<std::pair<std::string, UTILS::COLOR::ColorInfo>> m_CSSColors; - double m_offset; + double m_offset{0.0}; }; |