Commit 8e74584b authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

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

This reverts commit 83d45830.
This was useless and not portable.
parent ecfc51d4
...@@ -735,7 +735,6 @@ int vlc_http_msg_add_atime(struct vlc_http_msg *m) ...@@ -735,7 +735,6 @@ 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