commit c492e45a4f044c2ac85a321ae3d520ede8f7fdff from: Markus Uhlin date: Sat Mar 7 22:42:03 2026 UTC fix_time: set 'new_time' to zero commit - ffe9c6bc1e4fbbae829f3867187aeab4ef075c38 commit + c492e45a4f044c2ac85a321ae3d520ede8f7fdff blob - de020e62a53a8d086d0aa39611404a0acebbc722 blob + 04e275c03e443613a3d980f3ac9cd2d53cc9c5d5 --- FICS/utils.c +++ FICS/utils.c @@ -851,7 +851,7 @@ fix_time(const char *old_time) char day[5] = { '\0' }; char i; char month[5] = { '\0' }; - static char new_time[20]; + static char new_time[20] = { '\0' }; _Static_assert(4 < ARRAY_SIZE(day), "'day' too small"); _Static_assert(4 < ARRAY_SIZE(month), "'month' too small");