diff options
| author | Marcello Stanisci <stanisci.m@gmail.com> | 2018-03-21 17:12:24 +0100 | 
|---|---|---|
| committer | Marcello Stanisci <stanisci.m@gmail.com> | 2018-03-21 17:13:27 +0100 | 
| commit | 0056cb6d09b6edbe311057177864e7a72c571fdb (patch) | |
| tree | 2cb690e050f0b226c211bea7e251eac54ef6870d /src | |
| parent | 9cc813adec097191c4c2c0da08337ffd0dcf6f6e (diff) | |
addressing leaks.
Diffstat (limited to 'src')
| -rw-r--r-- | src/exchange-lib/testing_api_helpers.c | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/src/exchange-lib/testing_api_helpers.c b/src/exchange-lib/testing_api_helpers.c index f5390303..a942b652 100644 --- a/src/exchange-lib/testing_api_helpers.c +++ b/src/exchange-lib/testing_api_helpers.c @@ -175,10 +175,12 @@ TALER_TESTING_prepare_exchange (const char *config_filename,  		"Failed to run `taler-auditor-sign`,"                  " is your PATH correct?\n");      GNUNET_free (signed_keys_out); +    GNUNET_free (exchange_master_pub);      return GNUNET_NO;    } +  GNUNET_free (exchange_master_pub);    GNUNET_free (signed_keys_out);    GNUNET_OS_process_wait (proc);    GNUNET_OS_process_destroy (proc); | 
