exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 97e404e81a815f71550228e991a2c173f9d86cab
parent e6c5262c9ec9c6a930bff99f66eaa8f6cf509f08
Author: Christian Grothoff <christian@grothoff.org>
Date:   Tue, 16 Feb 2021 00:44:03 +0100

fix revocation of unknown key

Diffstat:
Msrc/util/taler-exchange-secmod-eddsa.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/util/taler-exchange-secmod-eddsa.c b/src/util/taler-exchange-secmod-eddsa.c @@ -803,7 +803,7 @@ handle_revoke_request (const struct sockaddr_un *addr, struct Key *key; struct Key *nkey; - nkey = NULL; + key = NULL; for (struct Key *pos = keys_head; NULL != pos; pos = pos->next) if (0 == GNUNET_memcmp (&pos->exchange_pub, &rr->exchange_pub))