From c3e6ecde36692d03dc360200c7a7044a02c4a392 Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Fri, 13 Jan 2017 23:42:51 +0100 Subject: [PATCH] shell32/tests: Fixed CharLowerBuffA size. Signed-off-by: Marcus Meissner Signed-off-by: Alexandre Julliard --- dlls/shell32/tests/shelllink.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/shell32/tests/shelllink.c b/dlls/shell32/tests/shelllink.c index b789db4a182..fdf2b147023 100644 --- a/dlls/shell32/tests/shelllink.c +++ b/dlls/shell32/tests/shelllink.c @@ -1276,7 +1276,7 @@ todo_wine { index = 5000; strcpy(pathA, "user32.dll"); hicon = ExtractAssociatedIconA(NULL, pathA, &index); - CharLowerBuffA(pathA, -1); + CharLowerBuffA(pathA, strlen(pathA)); todo_wine { ok(hicon != NULL, "Got icon %p\n", hicon); ok(!!strstr(pathA, "shell32.dll"), "Unexpected path %s\n", pathA); @@ -1288,7 +1288,7 @@ todo_wine { index = 0xcaca; strcpy(pathA, "dummy.exe"); hicon = ExtractAssociatedIconA(NULL, pathA, &index); - CharLowerBuffA(pathA, -1); + CharLowerBuffA(pathA, strlen(pathA)); todo_wine { ok(hicon != NULL, "Got icon %p\n", hicon); ok(!!strstr(pathA, "shell32.dll"), "Unexpected path %s\n", pathA); -- 2.11.4.GIT