mirror of https://github.com/Icinga/icinga2.git
Fix uninitialized field in the ScriptError class
Coverity Bug ID: 1272322
This commit is contained in:
parent
e52a1f38f3
commit
2ee1a197a9
|
@ -205,7 +205,7 @@ String icinga::DiagnosticInformation(boost::exception_ptr eptr, bool verbose)
|
|||
}
|
||||
|
||||
ScriptError::ScriptError(const String& message)
|
||||
: m_Message(message)
|
||||
: m_Message(message), m_IncompleteExpr(false)
|
||||
{ }
|
||||
|
||||
ScriptError::ScriptError(const String& message, const DebugInfo& di, bool incompleteExpr)
|
||||
|
|
Loading…
Reference in New Issue