shlwapi/tests: Fix a buffer overflow that results in a crash on Win9x.
This commit is contained in:
parent
69797d7f3d
commit
63b8624a05
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue