Commit 83d45830 authored by Francois Cartegnie's avatar Francois Cartegnie

access: http: fix uninitialized member (cid #1346979)

parent 306544c8
...@@ -735,6 +735,7 @@ int vlc_http_msg_add_atime(struct vlc_http_msg *m) ...@@ -735,6 +735,7 @@ int vlc_http_msg_add_atime(struct vlc_http_msg *m)
static time_t vlc_http_mktime(const char *str) static time_t vlc_http_mktime(const char *str)
{ /* IETF RFC7231 §7.1.1.1 */ { /* IETF RFC7231 §7.1.1.1 */
struct tm tm; struct tm tm;
tm.tm_isdst = -1;
char mon[4]; char mon[4];
/* Internet Message Format date */ /* Internet Message Format date */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment