libsecret: Fix uninitialized access in _secret_attributes_validate()

This commit is contained in:
Stef Walter 2014-03-05 11:54:11 +01:00
parent fb4de0e52a
commit 0d116b7177

View File

@ -200,7 +200,7 @@ _secret_attributes_validate (const SecretSchema *schema,
{ {
const SecretSchemaAttribute *attribute; const SecretSchemaAttribute *attribute;
GHashTableIter iter; GHashTableIter iter;
gboolean any; gboolean any = FALSE;
gchar *key; gchar *key;
gchar *value; gchar *value;
gchar *end; gchar *end;