Explicitly initialize struct tm with zeroes

This is recommended by the manual as strptime(), in principle,
might only touch the fields it parses from the string. Given
the struct tm implementations differ from operating system to
operating system, we make sure and set everything to zero
before passing it to strptime().

Signed-off-by: Laslo Hunhold <dev@frign.de>
This commit is contained in:
Laslo Hunhold 2020-07-23 16:54:21 +02:00
parent 660b308617
commit 6b508a0e07
No known key found for this signature in database
GPG key ID: 69576BD24CFCB980

2
http.c
View file

@ -350,7 +350,7 @@ http_send_response(int fd, struct request *r)
{
struct in6_addr res;
struct stat st;
struct tm tm;
struct tm tm = { 0 };
size_t len, i;
off_t lower, upper;
int hasport, ipv6host;