[PATCH] mshtml: use ARRAY_SIZE instead of sizeof in MultiByteToWideChar

Marcus Meissner meissner at suse.de
Mon Feb 3 04:45:48 CST 2020


Signed-off-by: Marcus Meissner <meissner at suse.de>
---
 dlls/mshtml/tests/dom.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/mshtml/tests/dom.c b/dlls/mshtml/tests/dom.c
index 1c4a54cf63..2b0a5cde95 100644
--- a/dlls/mshtml/tests/dom.c
+++ b/dlls/mshtml/tests/dom.c
@@ -6370,7 +6370,7 @@ static void test_navigator(IHTMLDocument2 *doc)
     hres = ObtainUserAgentString(0, bufa, &size);
     ok(hres == S_OK, "ObtainUserAgentString failed: %08x\n", hres);
 
-    MultiByteToWideChar(CP_ACP, 0, bufa, size, buf, sizeof(buf));
+    MultiByteToWideChar(CP_ACP, 0, bufa, size, buf, ARRAY_SIZE(buf));
 
     bstr = NULL;
     hres = IOmNavigator_get_userAgent(navigator, &bstr);
@@ -6390,7 +6390,7 @@ static void test_navigator(IHTMLDocument2 *doc)
 
     hres = UrlMkSetSessionOption(URLMON_OPTION_USERAGENT, ua, sizeof(ua), 0);
     ok(hres == S_OK, "UrlMkSetSessionOption failed: %08x\n", hres);
-    MultiByteToWideChar(CP_ACP, 0, ua, -1, buf, sizeof(buf));
+    MultiByteToWideChar(CP_ACP, 0, ua, -1, buf, ARRAY_SIZE(buf));
 
     hres = IOmNavigator_get_appVersion(navigator, &bstr);
     ok(hres == S_OK, "get_appVersion failed: %08x\n", hres);
-- 
2.25.0




More information about the wine-devel mailing list