exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 7e37ee5afe9a1c16401faba64cacc0da65502921
parent c53a4d5b82b7235734b21481305932a031ef7822
Author: Sree Harsha Totakura <sreeharsha@totakura.in>
Date:   Thu, 26 Mar 2015 18:32:08 +0100

db: Free the connection_cfg_str created during postgres plugin load

Diffstat:
Msrc/mint/plugin_mintdb_postgres.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/mint/plugin_mintdb_postgres.c b/src/mint/plugin_mintdb_postgres.c @@ -2348,6 +2348,7 @@ libtaler_plugin_mintdb_postgres_done (void *cls) struct TALER_MINTDB_Plugin *plugin = cls; struct PostgresClosure *pg = plugin->cls; + GNUNET_free (pg->TALER_MINT_db_connection_cfg_str); GNUNET_free (pg); GNUNET_free (plugin); return NULL;