Ensure mod is properly initialized

Fixes a segfault.
This commit is contained in:
sin 2014-08-13 23:19:49 +01:00 committed by FRIGN
parent a1fa707eec
commit 21ec61991f

View file

@ -211,8 +211,9 @@ responsefile(void) {
if (req.type == GET) if (req.type == GET)
writetext("\r\n<html><body>"HttpNotFound"</body></html>\r\n"); writetext("\r\n<html><body>"HttpNotFound"</body></html>\r\n");
} else { } else {
snprintf(mod, sizeof(mod), "%s", tstamp(st.st_mtim.tv_sec));
/* check if modified */ /* check if modified */
if (!strcmp(reqmod, tstamp(st.st_mtim.tv_sec)) if (!strcmp(reqmod, mod)
&& !putresentry(HEADER, HttpNotModified, tstamp(0))) { && !putresentry(HEADER, HttpNotModified, tstamp(0))) {
/* not modified, we're done here*/ /* not modified, we're done here*/
status = 304; status = 304;