win32u: Enlarge buffer size in format_date.

This commit is contained in:
Brendan Shanks 2024-04-02 12:40:20 -07:00 committed by Alexandre Julliard
parent 609b42c169
commit 0feed009b4

View file

@ -885,7 +885,7 @@ static unsigned int format_date( WCHAR *bufferW, LONGLONG time )
{
int cleaps, years, yearday, months, days;
unsigned int day, month, year;
char buffer[32];
char buffer[33];
days = time / TICKSPERSEC / SECSPERDAY;