gnunet-svn
[Top][All Lists]
Advanced

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

[taler-exchange] branch master updated: -fix


From: gnunet
Subject: [taler-exchange] branch master updated: -fix
Date: Sat, 28 Oct 2023 02:15:38 +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 a01dc97b -fix
a01dc97b is described below

commit a01dc97b4b9a777a126ec6071c83afbd531a49bc
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Sat Oct 28 02:15:35 2023 +0200

    -fix
---
 src/util/denom.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/util/denom.c b/src/util/denom.c
index 1303b9d4..928c4632 100644
--- a/src/util/denom.c
+++ b/src/util/denom.c
@@ -462,8 +462,11 @@ TALER_planchet_setup_coin_priv (
 void
 TALER_blinded_planchet_free (struct TALER_BlindedPlanchet *blinded_planchet)
 {
-  GNUNET_CRYPTO_blinded_message_decref (blinded_planchet->blinded_message);
-  blinded_planchet->blinded_message = NULL;
+  if (NULL != blinded_planchet->blinded_message)
+  {
+    GNUNET_CRYPTO_blinded_message_decref (blinded_planchet->blinded_message);
+    blinded_planchet->blinded_message = NULL;
+  }
 }
 
 

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