gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [taler-exchange] 02/02: fix fakebank memory leak


From: gnunet
Subject: [GNUnet-SVN] [taler-exchange] 02/02: fix fakebank memory leak
Date: Tue, 16 Jan 2018 13:11:40 +0100

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

grothoff pushed a commit to branch master
in repository exchange.

commit bc7957f39338f220ec4a7e1b21e17b6142b809de
Author: Christian Grothoff <address@hidden>
AuthorDate: Tue Jan 16 13:11:35 2018 +0100

    fix fakebank memory leak
---
 src/bank-lib/fakebank.c                 | 4 ++--
 src/exchange-lib/exchange_api_reserve.c | 9 ++++++++-
 2 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/src/bank-lib/fakebank.c b/src/bank-lib/fakebank.c
index b54cf44..ff7ecef 100644
--- a/src/bank-lib/fakebank.c
+++ b/src/bank-lib/fakebank.c
@@ -832,8 +832,8 @@ handle_history (struct TALER_FAKEBANK_Handle *h,
                        "wt_subject", subject);
     GNUNET_assert (NULL != trans);
     GNUNET_free (subject);
-    GNUNET_assert (0 == json_array_append (history,
-                                           trans));
+    GNUNET_assert (0 == json_array_append_new (history,
+                                               trans));
     if (count > 0)
     {
       pos = pos->next;
diff --git a/src/exchange-lib/exchange_api_reserve.c 
b/src/exchange-lib/exchange_api_reserve.c
index ab857f2..72429d4 100644
--- a/src/exchange-lib/exchange_api_reserve.c
+++ b/src/exchange-lib/exchange_api_reserve.c
@@ -570,12 +570,15 @@ handle_reserve_status_finished (void *cls,
     break;
   }
   if (NULL != rsh->cb)
+  {
     rsh->cb (rsh->cb_cls,
              response_code,
             TALER_JSON_get_error_code (json),
              json,
              NULL,
              0, NULL);
+    rsh->cb = NULL;
+  }
   TALER_EXCHANGE_reserve_status_cancel (rsh);
 }
 
@@ -745,7 +748,8 @@ reserve_withdraw_ok (struct 
TALER_EXCHANGE_ReserveWithdrawHandle *wsh,
   struct GNUNET_CRYPTO_RsaSignature *blind_sig;
   struct TALER_FreshCoin fc;
   struct GNUNET_JSON_Specification spec[] = {
-    GNUNET_JSON_spec_rsa_signature ("ev_sig", &blind_sig),
+    GNUNET_JSON_spec_rsa_signature ("ev_sig",
+                                    &blind_sig),
     GNUNET_JSON_spec_end()
   };
 
@@ -961,11 +965,14 @@ handle_reserve_withdraw_finished (void *cls,
     break;
   }
   if (NULL != wsh->cb)
+  {
     wsh->cb (wsh->cb_cls,
              response_code,
             TALER_JSON_get_error_code (json),
              NULL,
              json);
+    wsh->cb = NULL;
+  }
   TALER_EXCHANGE_reserve_withdraw_cancel (wsh);
 }
 

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

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