summaryrefslogtreecommitdiff
path: root/src/mintdb/plugin_mintdb_common.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-07-09 22:10:14 +0200
committerChristian Grothoff <christian@grothoff.org>2015-07-09 22:10:14 +0200
commitbe535b68e1c5911c9ec011a0d24714d0f4b42377 (patch)
treef3105779d95265b4ebdaa8aff735bad31cc22d71 /src/mintdb/plugin_mintdb_common.c
parentbe778784ea2ceaf609426041c5ac3a0241ea242e (diff)
downloadexchange-be535b68e1c5911c9ec011a0d24714d0f4b42377.tar.gz
exchange-be535b68e1c5911c9ec011a0d24714d0f4b42377.tar.bz2
exchange-be535b68e1c5911c9ec011a0d24714d0f4b42377.zip
fix a few pointer passing issues, add remark about #3886
Diffstat (limited to 'src/mintdb/plugin_mintdb_common.c')
-rw-r--r--src/mintdb/plugin_mintdb_common.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mintdb/plugin_mintdb_common.c b/src/mintdb/plugin_mintdb_common.c
index f380d7da0..11430127f 100644
--- a/src/mintdb/plugin_mintdb_common.c
+++ b/src/mintdb/plugin_mintdb_common.c
@@ -100,6 +100,8 @@ common_free_coin_transaction_list (void *cls,
{
case TALER_MINTDB_TT_DEPOSIT:
json_decref (list->details.deposit->wire);
+ GNUNET_CRYPTO_rsa_public_key_free (list->details.deposit->coin.denom_pub.rsa_public_key);
+ GNUNET_CRYPTO_rsa_signature_free (list->details.deposit->coin.denom_sig.rsa_signature);
GNUNET_free (list->details.deposit);
break;
case TALER_MINTDB_TT_REFRESH_MELT: