From 0aa5c93aa87b54da8525ddc31153b4b18f88a4a3 Mon Sep 17 00:00:00 2001 From: albert-github Date: Fri, 10 Apr 2020 14:18:57 +0200 Subject: Missing break statement (#7696) The break statement was unintentional left out (found by coverity). --- src/docparser.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/docparser.cpp b/src/docparser.cpp index 8191533..029dc3f 100644 --- a/src/docparser.cpp +++ b/src/docparser.cpp @@ -1566,6 +1566,7 @@ reparsetoken: { handleStyleLeave(parent,children,DocStyleChange::S,tokenName); } + break; case HTML_STRIKE: if (!g_token->endTag) { -- cgit v0.12