datetime: don't crash if localtime failed

This commit is contained in:
Sigrid Solveig Haflínudóttir 2021-11-17 14:14:38 +01:00
parent 60698c787a
commit 6c1720e328
No known key found for this signature in database
GPG Key ID: FC8DDA5A6A7456C4
1 changed files with 3 additions and 0 deletions

View File

@ -384,7 +384,10 @@ static Uint8
datetime_dei(Device *d, Uint8 port)
{
time_t seconds = time(NULL);
struct tm zt = {0};
struct tm *t = localtime(&seconds);
if(t == NULL)
t = &zt;
switch(port) {
case 0x0: return (t->tm_year + 1900) >> 8;
case 0x1: return (t->tm_year + 1900);