Fix uninitialized field in the ScriptError class

Coverity Bug ID: 1272322
This commit is contained in:
Gunnar Beutner 2015-03-02 09:57:19 +01:00
parent e52a1f38f3
commit 2ee1a197a9
1 changed files with 1 additions and 1 deletions

View File

@ -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)