challenger

OAuth 2.0-based authentication service that validates user can receive messages at a certain address
Log | Files | Refs | Submodules | README | LICENSE

commit 629c9e84814d99a3dcc7b7631f96a6611258233e
parent f1492481f6e986e0087bfc1ed609b74c6ae0e99a
Author: Christian Grothoff <christian@grothoff.org>
Date:   Fri, 19 Jul 2024 17:52:41 +0200

fix crash to start without configured restrictions

Diffstat:
Msrc/challenger/challenger-httpd.c | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/src/challenger/challenger-httpd.c b/src/challenger/challenger-httpd.c @@ -647,6 +647,11 @@ run (void *cls, return; } } + else + { + CH_restrictions = json_object (); + GNUNET_assert (NULL != CH_restrictions); + } } global_ret = EXIT_NOTCONFIGURED;