From b665d2557a030ef710b3b6d4edb361aaf22f9908 Mon Sep 17 00:00:00 2001 From: Martchus Date: Sat, 2 Jun 2018 22:56:33 +0200 Subject: [PATCH] Fix missing break in MatroskaChapter::internalParse() --- matroska/matroskachapter.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/matroska/matroskachapter.cpp b/matroska/matroskachapter.cpp index 6b61d9f..fee75ad 100644 --- a/matroska/matroskachapter.cpp +++ b/matroska/matroskachapter.cpp @@ -112,6 +112,7 @@ void MatroskaChapter::internalParse(Diagnostics &diag) break; case MatroskaIds::ChapterAtom: m_nestedChapters.emplace_back(make_unique(chapterAtomChild)); + break; default: diag.emplace_back(DiagLevel::Warning, "\"ChapterAtom\"-element contains unknown child element \"" % chapterAtomChild->idToString() + "\". It will be ignored.", context);