Fix uninitialized value revealed by Coverity

This commit is contained in:
Juergen Spitzmueller 2018-09-01 10:41:29 +02:00
parent b277ac5390
commit 5279f3e11f

View File

@ -590,6 +590,7 @@ void InsetLayout::readArgument(Lexer & lex)
arg.labelfont = inherit_font; arg.labelfont = inherit_font;
arg.is_toc_caption = false; arg.is_toc_caption = false;
arg.passthru = PT_INHERITED; arg.passthru = PT_INHERITED;
arg.nodelims = false;
string nr; string nr;
lex >> nr; lex >> nr;
bool const postcmd = prefixIs(nr, "post:"); bool const postcmd = prefixIs(nr, "post:");