Commit 76899534 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

crypt32/tests: Fixed buffer overflow in encode test.

parent 2226ddca
...@@ -464,7 +464,7 @@ static void testTimeEncoding(DWORD dwEncoding, LPCSTR structType, ...@@ -464,7 +464,7 @@ static void testTimeEncoding(DWORD dwEncoding, LPCSTR structType,
static const char *printSystemTime(const SYSTEMTIME *st) static const char *printSystemTime(const SYSTEMTIME *st)
{ {
static char buf[22]; static char buf[25];
sprintf(buf, "%02d-%02d-%04d %02d:%02d:%02d.%03d", st->wMonth, st->wDay, sprintf(buf, "%02d-%02d-%04d %02d:%02d:%02d.%03d", st->wMonth, st->wDay,
st->wYear, st->wHour, st->wMinute, st->wSecond, st->wMilliseconds); st->wYear, st->wHour, st->wMinute, st->wSecond, st->wMilliseconds);
...@@ -473,7 +473,7 @@ static const char *printSystemTime(const SYSTEMTIME *st) ...@@ -473,7 +473,7 @@ static const char *printSystemTime(const SYSTEMTIME *st)
static const char *printFileTime(const FILETIME *ft) static const char *printFileTime(const FILETIME *ft)
{ {
static char buf[22]; static char buf[25];
SYSTEMTIME st; SYSTEMTIME st;
FileTimeToSystemTime(ft, &st); FileTimeToSystemTime(ft, &st);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment