mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-26 07:04:37 +02:00
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)
|
ScriptError::ScriptError(const String& message)
|
||||||
: m_Message(message)
|
: m_Message(message), m_IncompleteExpr(false)
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
ScriptError::ScriptError(const String& message, const DebugInfo& di, bool incompleteExpr)
|
ScriptError::ScriptError(const String& message, const DebugInfo& di, bool incompleteExpr)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user