gnunet-svn
[Top][All Lists]
Advanced

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

[taler-challenger] branch master updated: scope can be NULL


From: gnunet
Subject: [taler-challenger] branch master updated: scope can be NULL
Date: Thu, 02 Nov 2023 16:58:00 +0100

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository challenger.

The following commit(s) were added to refs/heads/master by this push:
     new 66e6c0c  scope can be NULL
66e6c0c is described below

commit 66e6c0c149d353f1cc28f44630ca3deec40df38e
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Thu Nov 2 16:57:57 2023 +0100

    scope can be NULL
---
 src/challengerdb/pg_authorize_start.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/challengerdb/pg_authorize_start.c 
b/src/challengerdb/pg_authorize_start.c
index a0f64c2..7d31bca 100644
--- a/src/challengerdb/pg_authorize_start.c
+++ b/src/challengerdb/pg_authorize_start.c
@@ -40,7 +40,9 @@ CH_PG_authorize_start (void *cls,
   struct GNUNET_PQ_QueryParam params[] = {
     GNUNET_PQ_query_param_auto_from_type (nonce),
     GNUNET_PQ_query_param_uint64 (&client_id),
-    GNUNET_PQ_query_param_string (client_scope),
+    NULL != client_scope
+    ? GNUNET_PQ_query_param_string (client_scope),
+    : GNUNET_PQ_query_param_null (),
     GNUNET_PQ_query_param_string (client_state),
     NULL != client_redirect_uri
     ? GNUNET_PQ_query_param_string (client_redirect_uri)

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