summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2018-04-24 22:29:44 +0300
committerSergey Poznyakoff <gray@gnu.org>2018-04-24 22:29:44 +0300
commitb2156c559a91ad4eed241d6a624a8ecfac576174 (patch)
tree2984347856fb6a77a3cb86beab9a168353a0be46
parent56edbac842e7a8cd256bf099715265a793c92d55 (diff)
downloadfileserv-b2156c559a91ad4eed241d6a624a8ecfac576174.tar.gz
fileserv-b2156c559a91ad4eed241d6a624a8ecfac576174.tar.bz2
Minor fix
* fileserv.c (http_log): Avoid dereferencing NULL pointers.
-rw-r--r--src/fileserv.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/fileserv.c b/src/fileserv.c
index 58262c3..568ba37 100644
--- a/src/fileserv.c
+++ b/src/fileserv.c
@@ -509,6 +509,12 @@ get_file_resp(struct MHD_Connection *conn, char const *url, FILE_RESP *resp)
return MHD_HTTP_OK;
}
+static inline char const *
+safestr(char const *s)
+{
+ return s ? s : "-";
+}
+
void
http_log(struct MHD_Connection *connection,
char const *method, char const *url,
@@ -537,9 +543,8 @@ http_log(struct MHD_Connection *connection,
strftime(tbuf, sizeof(tbuf), "[%d/%b/%Y:%H:%M:%S %z]", tm);
info("%s %s - - %s \"%s %s\" %3d %lu \"%s\" \"%s\"",
- host, ipstr, tbuf, method, url, status, st ? st->st_size : 0,
- referer ? referer : "",
- user_agent ? user_agent : "");
+ safestr(host), ipstr, tbuf, method, url, status,
+ st ? st->st_size : 0, safestr(referer), safestr(user_agent));
free(ipstr);
}

Return to:

Send suggestions and report system problems to the System administrator.