allow empty signkeys array

This commit is contained in:
Christian Grothoff 2020-12-12 22:43:04 +01:00
parent 0847e16ea5
commit 8bed4152fe
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC

View File

@ -535,6 +535,9 @@ parse_json_auditor (struct TALER_EXCHANGE_AuditorInformation *auditor,
NULL, NULL))
{
GNUNET_break_op (0);
json_dumpf (auditor_obj,
stderr,
JSON_INDENT (2));
return GNUNET_SYSERR;
}
auditor->auditor_url = GNUNET_strdup (auditor_url);
@ -862,8 +865,9 @@ decode_keys_json (const json_t *resp_obj,
json_object_get (resp_obj,
"signkeys")));
EXITIF (JSON_ARRAY != json_typeof (sign_keys_array));
EXITIF (0 == (key_data->num_sign_keys =
json_array_size (sign_keys_array)));
if (0 != (key_data->num_sign_keys =
json_array_size (sign_keys_array)))
{
key_data->sign_keys
= GNUNET_new_array (key_data->num_sign_keys,
struct TALER_EXCHANGE_SigningPublicKey);
@ -875,6 +879,7 @@ decode_keys_json (const json_t *resp_obj,
&key_data->master_pub));
}
}
}
/* parse the denomination keys, merging with the
possibly EXISTING array as required (/keys cherry picking) */