From 5279f3e11f6b36f43b6798499153820cc1e49f0d Mon Sep 17 00:00:00 2001 From: Juergen Spitzmueller Date: Sat, 1 Sep 2018 10:41:29 +0200 Subject: [PATCH] Fix uninitialized value revealed by Coverity --- src/insets/InsetLayout.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/insets/InsetLayout.cpp b/src/insets/InsetLayout.cpp index ef8e7d3f66..e78b3ff7ef 100644 --- a/src/insets/InsetLayout.cpp +++ b/src/insets/InsetLayout.cpp @@ -590,6 +590,7 @@ void InsetLayout::readArgument(Lexer & lex) arg.labelfont = inherit_font; arg.is_toc_caption = false; arg.passthru = PT_INHERITED; + arg.nodelims = false; string nr; lex >> nr; bool const postcmd = prefixIs(nr, "post:"); -- 2.39.2