diff options
author | Marcello Stanisci <marcello.stanisci@inria.fr> | 2016-06-11 18:03:30 +0200 |
---|---|---|
committer | Marcello Stanisci <marcello.stanisci@inria.fr> | 2016-06-11 18:03:30 +0200 |
commit | 23c6dba981134987247ff607a6b18a68aef338b9 (patch) | |
tree | 531b6ee35ec300f0d6368c3ac9fe3b091d7888c7 /src/exchange/taler-exchange-aggregator.c | |
parent | 4f4bad310bc3c34029e7c7d51184c3a163882555 (diff) | |
parent | f4b013b3d467f93482a00b208acf3a2874362fe7 (diff) |
Merge branch 'master' of ssh://taler.net/var/git/exchange
Diffstat (limited to 'src/exchange/taler-exchange-aggregator.c')
-rw-r--r-- | src/exchange/taler-exchange-aggregator.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/exchange/taler-exchange-aggregator.c b/src/exchange/taler-exchange-aggregator.c index 08ea8abe..e3262962 100644 --- a/src/exchange/taler-exchange-aggregator.c +++ b/src/exchange/taler-exchange-aggregator.c @@ -757,6 +757,7 @@ run_aggregation (void *cls) "Preparing wire transfer of %s to %s\n", amount_s, TALER_B2S (&au->merchant_pub)); + GNUNET_free (amount_s); } au->wp = wp; au->ph = wp->wire_plugin->prepare_wire_transfer (wp->wire_plugin->cls, @@ -1095,7 +1096,11 @@ main (int argc, gettext_noop ("background process that aggregates and executes wire transfers to merchants"), options, &run, NULL)) + { + GNUNET_free ((void*) argv); return 1; + } + GNUNET_free ((void*) argv); return global_ret; } |