gnunet-svn
[Top][All Lists]
Advanced

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

[taler-exchange] branch master updated: fix #8101


From: gnunet
Subject: [taler-exchange] branch master updated: fix #8101
Date: Wed, 17 Jan 2024 19:32:03 +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 91969f18 fix #8101
91969f18 is described below

commit 91969f18e4901d495331f2587e6424aad6b5216e
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Wed Jan 17 19:31:59 2024 +0100

    fix #8101
---
 contrib/gana                    | 2 +-
 contrib/wallet-core             | 2 +-
 src/lib/exchange_api_csr_melt.c | 6 +++---
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/contrib/gana b/contrib/gana
index d6197791..0ff4edfe 160000
--- a/contrib/gana
+++ b/contrib/gana
@@ -1 +1 @@
-Subproject commit d61977913ea9f34760bb05d75c9e8bce2bf13a35
+Subproject commit 0ff4edfe76be77a59d4ebff5031feb50f3ba07d8
diff --git a/contrib/wallet-core b/contrib/wallet-core
index a17a7a51..496bfdc3 160000
--- a/contrib/wallet-core
+++ b/contrib/wallet-core
@@ -1 +1 @@
-Subproject commit a17a7a51dd50e2f508b078b9aada038fe124ff9c
+Subproject commit 496bfdc3aecbea61922bb2e0c281f5d35f934a3b
diff --git a/src/lib/exchange_api_csr_melt.c b/src/lib/exchange_api_csr_melt.c
index 1644f00a..bf6f4bfe 100644
--- a/src/lib/exchange_api_csr_melt.c
+++ b/src/lib/exchange_api_csr_melt.c
@@ -86,7 +86,7 @@ csr_ok (struct TALER_EXCHANGE_CsRMeltHandle *csrh,
         const json_t *arr,
         struct TALER_EXCHANGE_HttpResponse *hr)
 {
-  unsigned int alen = json_array_size (arr);
+  size_t alen = json_array_size (arr);
   struct TALER_ExchangeWithdrawValues alg_values[GNUNET_NZL (alen)];
   struct TALER_EXCHANGE_CsRMeltResponse csrr = {
     .hr = *hr,
@@ -94,7 +94,7 @@ csr_ok (struct TALER_EXCHANGE_CsRMeltHandle *csrh,
     .details.ok.alg_values = alg_values
   };
 
-  for (unsigned int i = 0; i<alen; i++)
+  for (size_t i = 0; i<alen; i++)
   {
     json_t *av = json_array_get (arr,
                                  i);
@@ -116,7 +116,7 @@ csr_ok (struct TALER_EXCHANGE_CsRMeltHandle *csrh,
   }
   csrh->cb (csrh->cb_cls,
             &csrr);
-  for (unsigned int i = 0; i<alen; i++)
+  for (size_t i = 0; i<alen; i++)
     TALER_denom_ewv_free (&alg_values[i]);
   return GNUNET_OK;
 }

-- 
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]