mirror of https://github.com/Icinga/icinga2.git
Fix uninitialized variable.
This commit is contained in:
parent
afbfdb2579
commit
f176d8f28b
|
@ -282,7 +282,7 @@ void ClusterComponent::RelayMessage(const Endpoint::Ptr& source, const Dictionar
|
|||
|
||||
Dictionary::Ptr security = message->Get("security");
|
||||
DynamicObject::Ptr secobj;
|
||||
int privs;
|
||||
int privs = 0;
|
||||
|
||||
if (security) {
|
||||
String type = security->Get("type");
|
||||
|
|
Loading…
Reference in New Issue