diff options
author | Christian Grothoff <christian@grothoff.org> | 2019-06-05 23:38:28 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2019-06-05 23:51:26 +0200 |
commit | 69a07468de8555d5260afab4019e34f40e5ec6be (patch) | |
tree | 57aa9a3093c8aa10c789391f4c6a010304aecbfd /src/lib/exchange_api_handle.c | |
parent | 2f0015b80385364ffbacca71504a96a46db6f0e0 (diff) |
working on fix for #5747
Diffstat (limited to 'src/lib/exchange_api_handle.c')
-rw-r--r-- | src/lib/exchange_api_handle.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/lib/exchange_api_handle.c b/src/lib/exchange_api_handle.c index f792e89de..9f02d7039 100644 --- a/src/lib/exchange_api_handle.c +++ b/src/lib/exchange_api_handle.c @@ -1251,29 +1251,29 @@ keys_completed_cb (void *cls, /* Old auditors got just copied into new ones. */ if (GNUNET_OK != decode_keys_json (j, - GNUNET_YES, + GNUNET_YES, &kd, - &vc)) + &vc)) { TALER_LOG_ERROR ("Could not decode /keys response\n"); response_code = 0; for (unsigned int i=0;i<kd.num_auditors;i++) { - struct TALER_EXCHANGE_AuditorInformation *anew = &kd.auditors[i]; + struct TALER_EXCHANGE_AuditorInformation *anew = &kd.auditors[i]; - GNUNET_array_grow (anew->denom_keys, - anew->num_denom_keys, - 0); - GNUNET_free (anew->auditor_url); + GNUNET_array_grow (anew->denom_keys, + anew->num_denom_keys, + 0); + GNUNET_free (anew->auditor_url); } GNUNET_free (kd.auditors); kd.auditors = NULL; kd.num_auditors = 0; for (unsigned int i=0;i<kd_old.num_denom_keys;i++) - GNUNET_CRYPTO_rsa_public_key_free (kd.denom_keys[i].key.rsa_public_key); + GNUNET_CRYPTO_rsa_public_key_free (kd.denom_keys[i].key.rsa_public_key); GNUNET_array_grow (kd.denom_keys, - kd.denom_keys_size, - 0); + kd.denom_keys_size, + 0); kd.num_denom_keys = 0; break; } @@ -1319,7 +1319,7 @@ keys_completed_cb (void *cls, /* notify application about the key information */ exchange->cert_cb (exchange->cert_cb_cls, &exchange->key_data, - vc); + vc); free_key_data (&kd_old); } |