gnunet-svn
[Top][All Lists]
Advanced

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

[taler-exchange] branch master updated: -fix off-by-one


From: gnunet
Subject: [taler-exchange] branch master updated: -fix off-by-one
Date: Fri, 23 Aug 2024 21:55:07 +0200

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 67a0e2ea1 -fix off-by-one
67a0e2ea1 is described below

commit 67a0e2ea12c07b5adbd35ec97bceff144efb9d34
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Fri Aug 23 21:55:04 2024 +0200

    -fix off-by-one
---
 src/auditor/taler-helper-auditor-transfer.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/auditor/taler-helper-auditor-transfer.c 
b/src/auditor/taler-helper-auditor-transfer.c
index 8663ad6f3..fb2a6e344 100644
--- a/src/auditor/taler-helper-auditor-transfer.c
+++ b/src/auditor/taler-helper-auditor-transfer.c
@@ -252,7 +252,7 @@ clear_finished_transfer_cb (
   if (0 > ac->err)
     return; /* already failed */
   GNUNET_assert (ac->max_aggregation_serial < tracking_serial_id);
-  ac->max_aggregation_serial = tracking_serial_id;
+  ac->max_aggregation_serial = tracking_serial_id + 1;
   qs = TALER_ARL_adb->delete_pending_deposit (
     TALER_ARL_adb->cls,
     batch_deposit_serial_id);

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