summaryrefslogtreecommitdiff
path: root/src/exchangedb/pg_get_link_data.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2023-10-29 20:27:23 +0100
committerChristian Grothoff <christian@grothoff.org>2023-10-29 20:27:23 +0100
commit9d71f037c015246ff5b2a804771cff9d84eb95dd (patch)
tree4bbcdedbf96152aebf5210a314b02160376e3e2f /src/exchangedb/pg_get_link_data.c
parente23c8b6a115158ee54653bff9af664ba9b73b44e (diff)
downloadexchange-9d71f037c015246ff5b2a804771cff9d84eb95dd.tar.gz
exchange-9d71f037c015246ff5b2a804771cff9d84eb95dd.tar.bz2
exchange-9d71f037c015246ff5b2a804771cff9d84eb95dd.zip
-fix leaks
Diffstat (limited to 'src/exchangedb/pg_get_link_data.c')
-rw-r--r--src/exchangedb/pg_get_link_data.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/exchangedb/pg_get_link_data.c b/src/exchangedb/pg_get_link_data.c
index a110c491b..1b0cb3e20 100644
--- a/src/exchangedb/pg_get_link_data.c
+++ b/src/exchangedb/pg_get_link_data.c
@@ -69,6 +69,7 @@ free_link_data_list (struct TALER_EXCHANGEDB_LinkList *ldl)
next = ldl->next;
TALER_denom_pub_free (&ldl->denom_pub);
TALER_blinded_denom_sig_free (&ldl->ev_sig);
+ TALER_denom_ewv_free (&ldl->alg_values);
GNUNET_free (ldl);
ldl = next;
}