summaryrefslogtreecommitdiff
path: root/src/exchange-lib/testing_api_cmd_withdraw.c
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2018-03-21 15:20:58 +0100
committerMarcello Stanisci <stanisci.m@gmail.com>2018-03-21 17:13:27 +0100
commit8fe985c7673d3ad014e8d2dcf304a60a702ee8b3 (patch)
treef0843cd27d553e5023996845e5a0abfee9c50002 /src/exchange-lib/testing_api_cmd_withdraw.c
parent7d4d3b3e9de03f6888647ed61c4156d392fcc640 (diff)
downloadexchange-8fe985c7673d3ad014e8d2dcf304a60a702ee8b3.tar.gz
exchange-8fe985c7673d3ad014e8d2dcf304a60a702ee8b3.tar.bz2
exchange-8fe985c7673d3ad014e8d2dcf304a60a702ee8b3.zip
address leaks.
Diffstat (limited to 'src/exchange-lib/testing_api_cmd_withdraw.c')
-rw-r--r--src/exchange-lib/testing_api_cmd_withdraw.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/exchange-lib/testing_api_cmd_withdraw.c b/src/exchange-lib/testing_api_cmd_withdraw.c
index 3584cbde3..5f3808a78 100644
--- a/src/exchange-lib/testing_api_cmd_withdraw.c
+++ b/src/exchange-lib/testing_api_cmd_withdraw.c
@@ -280,7 +280,6 @@ withdraw_traits (void *cls,
TALER_TESTING_interpreter_fail (ws->is);
return GNUNET_SYSERR;
}
- ws->exchange_url = MAH_path_to_url (ws->exchange, "/");
struct TALER_TESTING_Trait traits[] = {
TALER_TESTING_make_trait_coin_priv (0 /* only one coin */,
@@ -391,6 +390,8 @@ TALER_TESTING_cmd_withdraw_denomination
ws->pk = dk;
ws->expected_response_code = expected_response_code;
ws->exchange = exchange;
+ ws->exchange_url = MAH_path_to_url (ws->exchange, "/");
+
cmd.cls = ws;
cmd.label = label;
cmd.run = &withdraw_run;