[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-challenger] branch master updated: -fix compiler warning
From: |
gnunet |
Subject: |
[taler-challenger] branch master updated: -fix compiler warning |
Date: |
Sat, 10 Aug 2024 15:05:15 +0200 |
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 906d8ae -fix compiler warning
906d8ae is described below
commit 906d8aeaa0d8cfdb41c3094694d87a13f69308cf
Author: Christian Grothoff <grothoff@gnunet.org>
AuthorDate: Sat Aug 10 15:05:12 2024 +0200
-fix compiler warning
---
contrib/wallet-core | 2 +-
doc/prebuilt | 2 +-
src/challenger/challenger-httpd_authorize.c | 5 ++---
3 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/contrib/wallet-core b/contrib/wallet-core
index 240d647..87fec1c 160000
--- a/contrib/wallet-core
+++ b/contrib/wallet-core
@@ -1 +1 @@
-Subproject commit 240d647da85de6b575d15c37efec04757541e3dc
+Subproject commit 87fec1cc645cc66b8a65b2264067f473e44b37d7
diff --git a/doc/prebuilt b/doc/prebuilt
index b8d2d2f..ab2e09b 160000
--- a/doc/prebuilt
+++ b/doc/prebuilt
@@ -1 +1 @@
-Subproject commit b8d2d2fa2ed2a771880f451725176f256583cb22
+Subproject commit ab2e09b5a3711ab04f1f77f79158cc006cab3195
diff --git a/src/challenger/challenger-httpd_authorize.c
b/src/challenger/challenger-httpd_authorize.c
index c18edb0..7b845db 100644
--- a/src/challenger/challenger-httpd_authorize.c
+++ b/src/challenger/challenger-httpd_authorize.c
@@ -235,9 +235,9 @@ CH_handler_authorize (struct CH_HandlerContext *hc,
}
if (0 == CH_get_output_type (hc->connection))
{
- const char *prev_full_url = hc->full_url;
-
+ char *prev_full_url = hc->full_url;
const char *rparams = strchr (hc->full_url, '?');
+
if (NULL == rparams)
GNUNET_asprintf (&hc->full_url,
"%s?nonce=%s",
@@ -259,7 +259,6 @@ CH_handler_authorize (struct CH_HandlerContext *hc,
return CH_spa_redirect (hc, NULL, 0);
}
{
- enum GNUNET_GenericReturnValue ret;
json_t *args;
struct MHD_Response *resp;
MHD_RESULT res;
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [taler-challenger] branch master updated: -fix compiler warning,
gnunet <=