commit 07a089f4f167854f8ed3036475efc8171ade5d69
parent eb2b4a131bd6f69e91e0efdfc1798e53bb022e89
Author: Christian Grothoff <christian@grothoff.org>
Date: Sat, 15 Apr 2023 14:38:32 +0200
-fix memory leak
Diffstat:
2 files changed, 11 insertions(+), 5 deletions(-)
diff --git a/src/exchangedb/exchange_do_batch_coin_known.sql b/src/exchangedb/exchange_do_batch_coin_known.sql
@@ -390,7 +390,7 @@ FROM exists;
RETURN;
END $$;
-/*** THIS SQL CODE WORKS ***/
+/*** Experiment using a loop ***/
/*
CREATE OR REPLACE FUNCTION exchange_do_batch2_known_coin(
IN in_coin_pub1 BYTEA,
diff --git a/src/lib/auditor_api_deposit_confirmation.c b/src/lib/auditor_api_deposit_confirmation.c
@@ -362,10 +362,16 @@ TALER_AUDITOR_deposit_confirmation (
dh->ctx.headers,
&handle_deposit_confirmation_finished,
dh);
- /* Disable 100 continue processing */
- GNUNET_CURL_extend_headers (dh->job,
- curl_slist_append (NULL,
- "Expect:"));
+ {
+ /* Disable 100 continue processing */
+ struct curl_slist *x_headers;
+
+ x_headers = curl_slist_append (NULL,
+ "Expect:");
+ GNUNET_CURL_extend_headers (dh->job,
+ x_headers);
+ curl_slist_free_all (x_headers);
+ }
return dh;
}