From aae23f3c07b08580436c235a9da166232a75fa3a Mon Sep 17 00:00:00 2001 From: Tsuda Kageyu Date: Mon, 7 Nov 2016 14:12:38 +0900 Subject: [PATCH] Initialize all the data members of ID3v2::ChapterFrame. --- taglib/mpeg/id3v2/frames/chapterframe.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/taglib/mpeg/id3v2/frames/chapterframe.cpp b/taglib/mpeg/id3v2/frames/chapterframe.cpp index d45af5fb..e5c92b0e 100644 --- a/taglib/mpeg/id3v2/frames/chapterframe.cpp +++ b/taglib/mpeg/id3v2/frames/chapterframe.cpp @@ -37,7 +37,11 @@ class ChapterFrame::ChapterFramePrivate { public: ChapterFramePrivate() : - tagHeader(0) + tagHeader(0), + startTime(0), + endTime(0), + startOffset(0), + endOffset(0) { embeddedFrameList.setAutoDelete(true); } -- 2.40.0