0
0
Fork 0
mirror of https://git.sr.ht/~rabbits/uxn synced 2024-11-27 08:13:01 +00:00

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

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);