gnunet-svn
[Top][All Lists]
Advanced

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

[taler-exchange] branch master updated: -fix use of uninitalized data in


From: gnunet
Subject: [taler-exchange] branch master updated: -fix use of uninitalized data in error handler
Date: Wed, 22 Nov 2023 23:08:30 +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 0653993b -fix use of uninitalized data in error handler
0653993b is described below

commit 0653993b669a0c66c69a960b2489e5fc3856f62c
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Wed Nov 22 22:08:27 2023 +0100

    -fix use of uninitalized data in error handler
---
 src/exchange/taler-exchange-httpd_management_post_keys.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/exchange/taler-exchange-httpd_management_post_keys.c 
b/src/exchange/taler-exchange-httpd_management_post_keys.c
index 0cf8ab72..f91f24c4 100644
--- a/src/exchange/taler-exchange-httpd_management_post_keys.c
+++ b/src/exchange/taler-exchange-httpd_management_post_keys.c
@@ -271,7 +271,7 @@ TEH_handler_management_post_keys (
   struct MHD_Connection *connection,
   const json_t *root)
 {
-  struct AddKeysContext akc;
+  struct AddKeysContext akc = { 0 };
   const json_t *denom_sigs;
   const json_t *signkey_sigs;
   struct GNUNET_JSON_Specification spec[] = {

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