diff options
author | Christian Grothoff <christian@grothoff.org> | 2019-09-05 03:53:47 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2019-09-05 03:53:47 +0200 |
commit | e179fb9ba0ffa39113b98788fa1f54cc7e51f349 (patch) | |
tree | 83b1f8925b87ffc3732230f84196813d63888153 /src/exchangedb | |
parent | e5cf6039632584ebf70073c1cf4ab5e655de0e90 (diff) |
fix leak
Diffstat (limited to 'src/exchangedb')
-rw-r--r-- | src/exchangedb/plugin_exchangedb_postgres.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/exchangedb/plugin_exchangedb_postgres.c b/src/exchangedb/plugin_exchangedb_postgres.c index 6b5790c7a..acd6e9278 100644 --- a/src/exchangedb/plugin_exchangedb_postgres.c +++ b/src/exchangedb/plugin_exchangedb_postgres.c @@ -7743,6 +7743,7 @@ libtaler_plugin_exchangedb_postgres_done (void *cls) struct PostgresClosure *pg = plugin->cls; GNUNET_free (pg->connection_cfg_str); + GNUNET_free (pg->currency); GNUNET_free (pg); GNUNET_free (plugin); return NULL; |