[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-exchange] branch master updated: handle not found
From: |
gnunet |
Subject: |
[taler-exchange] branch master updated: handle not found |
Date: |
Sun, 29 Oct 2023 16:17:39 +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 6d4c780b handle not found
6d4c780b is described below
commit 6d4c780b1e6ae95061e53f6d54a52031fe600860
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Sun Oct 29 16:17:35 2023 +0100
handle not found
---
src/exchange/taler-exchange-httpd_keys.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/src/exchange/taler-exchange-httpd_keys.c
b/src/exchange/taler-exchange-httpd_keys.c
index 9448ce36..ec49607c 100644
--- a/src/exchange/taler-exchange-httpd_keys.c
+++ b/src/exchange/taler-exchange-httpd_keys.c
@@ -4179,6 +4179,11 @@ TEH_keys_get_timing (const struct
TALER_ExchangePublicKeyP *exchange_pub,
pid.public_key = exchange_pub->eddsa_pub;
hsk = GNUNET_CONTAINER_multipeermap_get (ksh->helpers->esign_keys,
&pid);
+ if (NULL == hsk)
+ {
+ GNUNET_break (0);
+ return GNUNET_NO;
+ }
meta->start = hsk->start_time;
meta->expire_sign = GNUNET_TIME_absolute_to_timestamp (
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [taler-exchange] branch master updated: handle not found,
gnunet <=