aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCastagnaIT <gottardo.stefano.83@gmail.com>2022-07-06 15:57:15 +0200
committerCastagnaIT <gottardo.stefano.83@gmail.com>2022-07-06 15:57:15 +0200
commitd8d31fe673365aebd4c06d532f46e6e3276f06c0 (patch)
treebff55c30ab6cc179715055f5322f856b58343fad
parentc57641461bbe6b86f3387deea7a9f80d2a8131fa (diff)
[Subtitles][WebVTT] Fix variable initialization
-rw-r--r--xbmc/cores/VideoPlayer/DVDSubtitles/webvtt/WebVTTHandler.h2
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};
};