aboutsummaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2024-11-10 07:32:48 +0100
committerdefault <nobody@localhost>2024-11-10 07:32:48 +0100
commit33375aca905339f759207d11d19f0ef102941f5d (patch)
treee5e5965eaab84fad7719d246715af258b2a1cfb6 /html.c
parenta657274d4e65ac1b16c49a9eae04ac02b0498f2a (diff)
Fixed possible crash in proxy code.
Diffstat (limited to 'html.c')
-rw-r--r--html.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/html.c b/html.c
index fe14e16..dbe8ae2 100644
--- a/html.c
+++ b/html.c
@@ -3221,7 +3221,7 @@ int html_get_handler(const xs_dict *req, const char *q_path,
NULL, 0, &status, body, b_size, 0);
if (valid_status(status)) {
- const char *ct = xs_dict_get(rsp, "content-type");
+ const char *ct = xs_or(xs_dict_get(rsp, "content-type"), "");
const char *lm = xs_dict_get(rsp, "last-modified");
const char *et = xs_dict_get(rsp, "etag");