mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2024-12-23 05:08:56 +00:00
libsecret: Fix uninitialized access in _secret_attributes_validate()
This commit is contained in:
parent
fb4de0e52a
commit
0d116b7177
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user