summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2023-11-22 22:08:27 +0100
committerChristian Grothoff <christian@grothoff.org>2023-11-22 22:08:27 +0100
commit0653993b669a0c66c69a960b2489e5fc3856f62c (patch)
tree3893820504a79f0e9045a172e27e4d325ad104d2 /src
parentecc66535e096aad7cd2c8cf8c15d309d65c1c888 (diff)
downloadexchange-0653993b669a0c66c69a960b2489e5fc3856f62c.tar.gz
exchange-0653993b669a0c66c69a960b2489e5fc3856f62c.tar.bz2
exchange-0653993b669a0c66c69a960b2489e5fc3856f62c.zip
-fix use of uninitalized data in error handler
Diffstat (limited to 'src')
-rw-r--r--src/exchange/taler-exchange-httpd_management_post_keys.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exchange/taler-exchange-httpd_management_post_keys.c b/src/exchange/taler-exchange-httpd_management_post_keys.c
index 0cf8ab727..f91f24c41 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[] = {