[PATCH 1/2] kernel32/tests: Correct the buffer size passed to FormatMessageW()

Michael Stefaniuc mstefani at winehq.org
Wed Jun 6 13:36:16 CDT 2018


Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>
---
 dlls/kernel32/tests/format_msg.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dlls/kernel32/tests/format_msg.c b/dlls/kernel32/tests/format_msg.c
index 290bce9f71..43e4d35c8a 100644
--- a/dlls/kernel32/tests/format_msg.c
+++ b/dlls/kernel32/tests/format_msg.c
@@ -289,8 +289,7 @@ static void test_message_from_string_wide(void)
     ok(r==4,"failed: r=%d\n", r);
 
     /* a single digit, left justified */
-    r = doitW(FORMAT_MESSAGE_FROM_STRING, fmt_1_4d, 0,
-        0, out, sizeof(out)/sizeof(CHAR), 1);
+    r = doitW(FORMAT_MESSAGE_FROM_STRING, fmt_1_4d, 0, 0, out, ARRAY_SIZE(out), 1);
     ok(!lstrcmpW(s_1_4d, out), "failed out=%s\n", wine_dbgstr_w(out));
     ok(r==4,"failed: r=%d\n", r);
 
-- 
2.14.4




More information about the wine-devel mailing list