gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-exchange] 03/03: fix memory leak on pay


From: gnunet
Subject: [taler-exchange] 03/03: fix memory leak on pay
Date: Mon, 20 Feb 2023 18:17:17 +0100

This is an automated email from the git hooks/post-receive script.

priscilla-huang pushed a commit to branch master
in repository exchange.

commit b663c8a3c1c8f07f448fca5812543225a6d1c25a
Author: priscilla <priscilla.huang@efrei.net>
AuthorDate: Mon Feb 20 12:16:50 2023 -0500

    fix memory leak on pay
---
 src/lib/exchange_api_batch_deposit.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/lib/exchange_api_batch_deposit.c 
b/src/lib/exchange_api_batch_deposit.c
index ca5c3c61..4665908d 100644
--- a/src/lib/exchange_api_batch_deposit.c
+++ b/src/lib/exchange_api_batch_deposit.c
@@ -269,6 +269,7 @@ handle_deposit_finished (void *cls,
         GNUNET_break_op (0);
         dr.hr.http_status = 0;
         dr.hr.ec = TALER_EC_GENERIC_REPLY_MALFORMED;
+        GNUNET_JSON_parse_free (spec);
         break;
       }
       dh->exchange_sigs = GNUNET_new_array (dh->num_cdds,
@@ -281,6 +282,7 @@ handle_deposit_finished (void *cls,
         GNUNET_break_op (0);
         dr.hr.http_status = 0;
         dr.hr.ec = TALER_EC_EXCHANGE_DEPOSIT_INVALID_SIGNATURE_BY_EXCHANGE;
+        GNUNET_JSON_parse_free (spec);
         break;
       }
       json_array_foreach (sigs, idx, sig)
@@ -330,12 +332,14 @@ handle_deposit_finished (void *cls,
           GNUNET_break_op (0);
           dr.hr.http_status = 0;
           dr.hr.ec = TALER_EC_EXCHANGE_DEPOSIT_INVALID_SIGNATURE_BY_EXCHANGE;
+          GNUNET_JSON_parse_free (spec);                    
           break;
         }
       }
       TEAH_get_auditors_for_dc (dh->exchange,
                                 &auditor_cb,
                                 dh);
+      GNUNET_JSON_parse_free (spec);
     }
     dr.details.success.exchange_sigs = dh->exchange_sigs;
     dr.details.success.exchange_pub = &dh->exchange_pub;

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]