Fix uninitialized variable.

This commit is contained in:
Gunnar Beutner 2013-09-18 10:43:23 +02:00
parent afbfdb2579
commit f176d8f28b
1 changed files with 1 additions and 1 deletions

View File

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