From c2a2c429b18cf3dfc65edc6fff40a06b2dec458e Mon Sep 17 00:00:00 2001 From: Ge van Geldorp Date: Thu, 15 Jan 2009 13:07:41 +0100 Subject: [PATCH] shell32/tests: Prevent crash on XP/W2K3. --- dlls/shell32/tests/shlfileop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/shell32/tests/shlfileop.c b/dlls/shell32/tests/shlfileop.c index e6d3287d4f8..433a1318888 100644 --- a/dlls/shell32/tests/shlfileop.c +++ b/dlls/shell32/tests/shlfileop.c @@ -513,7 +513,7 @@ static void test_delete(void) shfo.hwnd = NULL; shfo.wFunc = FO_DELETE; shfo.pFrom = buf; - shfo.pTo = "\0"; + shfo.pTo = NULL; shfo.fFlags = FOF_FILESONLY | FOF_NOCONFIRMATION | FOF_SILENT; shfo.hNameMappings = NULL; shfo.lpszProgressTitle = NULL;