Fix uninitialized field in the LivestatusScriptFrame class

Coverity Bug ID: 1272326
This commit is contained in:
Gunnar Beutner 2015-03-02 10:07:27 +01:00
parent 8f7599d4b3
commit ce1599fbb3
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ struct LivestatusScriptFrame
Dictionary::Ptr Locals;
LivestatusScriptFrame(void)
: NextLine(1)
: Seen(0), NextLine(1)
{ }
};