aboutsummaryrefslogtreecommitdiff
path: root/xs_fcgi.h
diff options
context:
space:
mode:
authorgrunfink <grunfink@noreply.codeberg.org>2024-09-16 07:28:28 +0000
committergrunfink <grunfink@noreply.codeberg.org>2024-09-16 07:28:28 +0000
commita09e5052ddd8df423332ada814e743893878e0b9 (patch)
tree732e4a923354f64614991c46fe264b7e0e78ef1e /xs_fcgi.h
parentb3c00cc09871433882e97a9f5d07882dd1bcfec8 (diff)
parentba5cbb6d828165a43826c6afdd71fa2edbdca302 (diff)
Merge pull request 'URL decode data after splitting the arguments' (#196) from ndagestad/snac2:mastodon_login into master
Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/196
Diffstat (limited to 'xs_fcgi.h')
-rw-r--r--xs_fcgi.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/xs_fcgi.h b/xs_fcgi.h
index 0dbd895..6d3b030 100644
--- a/xs_fcgi.h
+++ b/xs_fcgi.h
@@ -179,8 +179,7 @@ xs_dict *xs_fcgi_request(FILE *f, xs_str **payload, int *p_size, int *fcgi_id)
req = xs_dict_append(req, "method", v);
else
if (strcmp(k, "REQUEST_URI") == 0) {
- xs *udp = xs_url_dec(v);
- xs *pnv = xs_split_n(udp, "?", 1);
+ xs *pnv = xs_split_n(v, "?", 1);
/* store the path */
req = xs_dict_append(req, "path", xs_list_get(pnv, 0));
@@ -233,8 +232,7 @@ xs_dict *xs_fcgi_request(FILE *f, xs_str **payload, int *p_size, int *fcgi_id)
const char *ct = xs_dict_get(req, "content-type");
if (*payload && ct && strcmp(ct, "application/x-www-form-urlencoded") == 0) {
- xs *upl = xs_url_dec(*payload);
- p_vars = xs_url_vars(upl);
+ p_vars = xs_url_vars(*payload);
}
else
if (*payload && ct && xs_startswith(ct, "multipart/form-data")) {