gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [taler-exchange] branch master updated: fix memory leaks in


From: gnunet
Subject: [GNUnet-SVN] [taler-exchange] branch master updated: fix memory leaks in DB logic
Date: Sun, 05 Mar 2017 18:18:25 +0100

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

grothoff pushed a commit to branch master
in repository exchange.

The following commit(s) were added to refs/heads/master by this push:
     new 3abca6d  fix memory leaks in DB logic
3abca6d is described below

commit 3abca6d4e698dad1938e87c3003fdad14c08ae71
Author: Christian Grothoff <address@hidden>
AuthorDate: Sun Mar 5 18:18:23 2017 +0100

    fix memory leaks in DB logic
---
 src/exchangedb/plugin_exchangedb_postgres.c | 22 +++++++++++++++-------
 1 file changed, 15 insertions(+), 7 deletions(-)

diff --git a/src/exchangedb/plugin_exchangedb_postgres.c 
b/src/exchangedb/plugin_exchangedb_postgres.c
index feb03f9..179d609 100644
--- a/src/exchangedb/plugin_exchangedb_postgres.c
+++ b/src/exchangedb/plugin_exchangedb_postgres.c
@@ -4075,6 +4075,7 @@ postgres_lookup_wire_transfer (void *cls,
         &coin_pub,
         &amount_with_fee,
         &deposit_fee);
+    GNUNET_PQ_cleanup_result (rs);
   }
   PQclear (result);
   return GNUNET_OK;
@@ -4178,9 +4179,10 @@ postgres_wire_lookup_deposit_wtid (void *cls,
         GNUNET_PQ_result_spec_end
       };
 
-      if (GNUNET_OK != GNUNET_PQ_extract_result (result,
-                                                 rs,
-                                                 0))
+      if (GNUNET_OK !=
+          GNUNET_PQ_extract_result (result,
+                                    rs,
+                                    0))
       {
         GNUNET_break (0);
         PQclear (result);
@@ -4213,9 +4215,10 @@ postgres_wire_lookup_deposit_wtid (void *cls,
       TALER_PQ_result_spec_amount ("fee_deposit", &deposit_fee),
       GNUNET_PQ_result_spec_end
     };
-    if (GNUNET_OK != GNUNET_PQ_extract_result (result,
-                                               rs,
-                                               0))
+    if (GNUNET_OK !=
+        GNUNET_PQ_extract_result (result,
+                                  rs,
+                                  0))
     {
       GNUNET_break (0);
       PQclear (result);
@@ -4716,7 +4719,6 @@ postgres_select_deposits_above_serial_id (void *cls,
     struct TALER_EXCHANGEDB_Deposit deposit;
     uint8_t done = 0;
     uint64_t rowid;
-
     struct GNUNET_PQ_ResultSpec rs[] = {
       TALER_PQ_result_spec_amount ("amount_with_fee",
                                    &deposit.amount_with_fee),
@@ -4762,6 +4764,7 @@ postgres_select_deposits_above_serial_id (void *cls,
         deposit.wire_deadline,
         deposit.receiver_wire_account,
         done);
+    GNUNET_PQ_cleanup_result (rs);
   }
   PQclear (result);
   return GNUNET_OK;
@@ -4855,6 +4858,7 @@ postgres_select_refreshs_above_serial_id (void *cls,
         &amount_with_fee,
         num_newcoins,
         noreveal_index);
+    GNUNET_PQ_cleanup_result (rs);
   }
   PQclear (result);
   return GNUNET_OK;
@@ -4945,6 +4949,7 @@ postgres_select_refunds_above_serial_id (void *cls,
         &refund.h_proposal_data,
         refund.rtransaction_id,
         &refund.refund_amount);
+    GNUNET_PQ_cleanup_result (rs);
   }
   PQclear (result);
   return GNUNET_OK;
@@ -5038,6 +5043,7 @@ postgres_select_reserves_in_above_serial_id (void *cls,
         sender_account_details,
         transfer_details,
         execution_date);
+    GNUNET_PQ_cleanup_result (rs);
   }
 
   PQclear (result);
@@ -5138,6 +5144,7 @@ postgres_select_reserves_out_above_serial_id (void *cls,
         &reserve_sig,
         execution_date,
         &amount_with_fee);
+    GNUNET_PQ_cleanup_result (rs);
   }
 
   PQclear (result);
@@ -5229,6 +5236,7 @@ postgres_select_prepare_above_serial_id (void *cls,
         buf,
         buf_size,
         finished);
+    GNUNET_PQ_cleanup_result (rs);
   }
 
   PQclear (result);

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



reply via email to

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