shlwapi/tests: Fix a buffer overflow that results in a crash on Win9x.

This commit is contained in:
Detlef Riekenberg 2008-07-27 22:21:22 +02:00 committed by Alexandre Julliard
parent 69797d7f3d
commit 63b8624a05
1 changed files with 1 additions and 1 deletions

View File

@ -799,7 +799,7 @@ static void test_PathAppendA(void)
static void test_PathCanonicalizeA(void)
{
char dest[MAX_PATH];
char dest[LONG_LEN + MAX_PATH];
char too_long[LONG_LEN];
BOOL res;