Explicitely set tm_isdst to 0 before calling timegm. Coverity CID 12592.

This commit is contained in:
Thomas Schmitt 2015-10-10 21:33:08 +02:00
parent 4633ea3bc8
commit a16d4a28f4
1 changed files with 1 additions and 0 deletions

View File

@ -1821,6 +1821,7 @@ time_t iso_datetime_read_17(const uint8_t *buf)
sscanf((char*)&buf[12], "%2d", &tm.tm_sec);
tm.tm_year -= 1900;
tm.tm_mon -= 1;
tm.tm_isdst = 0;
return timegm(&tm) - ((int8_t)buf[6]) * 60 * 15;
}