diff options
author | Martin Schanzenbach <mschanzenbach@posteo.de> | 2020-08-02 16:54:59 +0200 |
---|---|---|
committer | Martin Schanzenbach <mschanzenbach@posteo.de> | 2020-08-02 16:54:59 +0200 |
commit | 25f37e8b2b5a13dec4aaf669ffe221ac34009609 (patch) | |
tree | bdea90a14cbc773ab0e7575781e584889e7c4f4a /src/reclaim | |
parent | 8ed78400d419a6a87df2596ed77849870494506c (diff) |
- fix urldecode params
Diffstat (limited to 'src/reclaim')
-rw-r--r-- | src/reclaim/plugin_rest_openid_connect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/reclaim/plugin_rest_openid_connect.c b/src/reclaim/plugin_rest_openid_connect.c index faa6e8351..74fb71135 100644 --- a/src/reclaim/plugin_rest_openid_connect.c +++ b/src/reclaim/plugin_rest_openid_connect.c @@ -1503,7 +1503,7 @@ get_url_parameter_copy (const struct RequestHandle *handle, const char *key) GNUNET_CONTAINER_multihashmap_get (handle->rest_handle->url_param_map, &hc); if (NULL == value) return NULL; - return GNUNET_strdup (value); + return GNUNET_STRINGS_urldecode (value); } |