mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-21 04:34:43 +02:00
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");
|
Dictionary::Ptr security = message->Get("security");
|
||||||
DynamicObject::Ptr secobj;
|
DynamicObject::Ptr secobj;
|
||||||
int privs;
|
int privs = 0;
|
||||||
|
|
||||||
if (security) {
|
if (security) {
|
||||||
String type = security->Get("type");
|
String type = security->Get("type");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user