mirror of https://github.com/Icinga/icinga2.git
Fix uninitialized field in the LivestatusScriptFrame class
Coverity Bug ID: 1272326
This commit is contained in:
parent
8f7599d4b3
commit
ce1599fbb3
|
@ -48,7 +48,7 @@ struct LivestatusScriptFrame
|
||||||
Dictionary::Ptr Locals;
|
Dictionary::Ptr Locals;
|
||||||
|
|
||||||
LivestatusScriptFrame(void)
|
LivestatusScriptFrame(void)
|
||||||
: NextLine(1)
|
: Seen(0), NextLine(1)
|
||||||
{ }
|
{ }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue