diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-03-28 23:32:02 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-03-28 23:32:02 +0100 |
commit | eb32dd626a61ab98db4f505aad9a2b9b7cfd6494 (patch) | |
tree | 74f0d2a00bbc4710a192415a6f81db787f200504 /src/testing/testing_api_cmd_deposit.c | |
parent | 677654f609048a1b45d9fc05eb97141c320e9540 (diff) |
fix leaks and bad RC logic wrt json reference copying
Diffstat (limited to 'src/testing/testing_api_cmd_deposit.c')
-rw-r--r-- | src/testing/testing_api_cmd_deposit.c | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/src/testing/testing_api_cmd_deposit.c b/src/testing/testing_api_cmd_deposit.c index 666805124..fcba7f270 100644 --- a/src/testing/testing_api_cmd_deposit.c +++ b/src/testing/testing_api_cmd_deposit.c @@ -294,9 +294,8 @@ deposit_run (void *cls, const struct TALER_TESTING_Command *cmd; struct DepositState *ods; - cmd = TALER_TESTING_interpreter_lookup_command - (is, - ds->deposit_reference); + cmd = TALER_TESTING_interpreter_lookup_command (is, + ds->deposit_reference); if (NULL == cmd) { GNUNET_break (0); @@ -306,8 +305,8 @@ deposit_run (void *cls, ods = cmd->cls; ds->coin_reference = ods->coin_reference; ds->coin_index = ods->coin_index; - ds->wire_details = ods->wire_details; - ds->contract_terms = ods->contract_terms; + ds->wire_details = json_incref (ods->wire_details); + ds->contract_terms = json_incref (ods->contract_terms); ds->timestamp = ods->timestamp; ds->refund_deadline = ods->refund_deadline; ds->amount = ods->amount; @@ -319,9 +318,9 @@ deposit_run (void *cls, /* We're copying the merchant key from another deposit operation */ const struct TALER_MerchantPrivateKeyP *merchant_priv; const struct TALER_TESTING_Command *cmd; - cmd = TALER_TESTING_interpreter_lookup_command - (is, - ds->merchant_priv_reference); + + cmd = TALER_TESTING_interpreter_lookup_command (is, + ds->merchant_priv_reference); if (NULL == cmd) { GNUNET_break (0); @@ -340,9 +339,8 @@ deposit_run (void *cls, ds->merchant_priv = *merchant_priv; } GNUNET_assert (ds->coin_reference); - coin_cmd = TALER_TESTING_interpreter_lookup_command - (is, - ds->coin_reference); + coin_cmd = TALER_TESTING_interpreter_lookup_command (is, + ds->coin_reference); if (NULL == coin_cmd) { GNUNET_break (0); @@ -743,6 +741,7 @@ TALER_TESTING_cmd_deposit_replay (const char *label, unsigned int expected_response_code) { struct DepositState *ds; + ds = GNUNET_new (struct DepositState); ds->deposit_reference = deposit_reference; ds->expected_response_code = expected_response_code; |