aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordefault <nobody@localhost>2024-11-11 19:41:43 +0100
committerdefault <nobody@localhost>2024-11-11 19:41:43 +0100
commit9283bc3bc0de2a71a16352b273a77c7b9af4468b (patch)
tree07017fdbbb709770059ea24bc153671356cec27e
parent33375aca905339f759207d11d19f0ef102941f5d (diff)
Fixed crash in xs_multipart_form_data() (from the tooot application).
-rw-r--r--xs_url.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/xs_url.h b/xs_url.h
index bc4e87c..cd540fa 100644
--- a/xs_url.h
+++ b/xs_url.h
@@ -153,7 +153,7 @@ xs_dict *xs_multipart_form_data(const char *payload, int p_size, const char *hea
memcpy(s1, p, q - p);
s1[q - p] = '\0';
- if (xs_startswith(s1, "Content-Disposition")) {
+ if (xs_startswith(s1, "Content-Disposition") || xs_startswith(s1, "content-disposition")) {
/* split by " like a primitive man */
l1 = xs_split(s1, "\"");
@@ -167,7 +167,7 @@ xs_dict *xs_multipart_form_data(const char *payload, int p_size, const char *hea
}
}
else
- if (xs_startswith(s1, "Content-Type")) {
+ if (xs_startswith(s1, "Content-Type") || xs_startswith(s1, "content-type")) {
l1 = xs_split(s1, ":");
if (xs_list_len(l1) >= 2) {