[PATCH] hnetcfg: GetModuleFileNameW gets characters, not bytes (Coverity)

Marcus Meissner meissner at suse.de
Mon Jun 25 08:28:33 CDT 2018


CID 1437516

Signed-off-by: Marcus Meissner <meissner at suse.de>
---
 dlls/hnetcfg/tests/policy.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/hnetcfg/tests/policy.c b/dlls/hnetcfg/tests/policy.c
index f2d1372ba6..b28535d448 100644
--- a/dlls/hnetcfg/tests/policy.c
+++ b/dlls/hnetcfg/tests/policy.c
@@ -117,7 +117,7 @@ static void test_NetFwAuthorizedApplication(void)
             &IID_INetFwAuthorizedApplication, (void**)&app);
     ok(hr == S_OK, "got: %08x\n", hr);
 
-    hr = GetModuleFileNameW(NULL, image, sizeof(image));
+    hr = GetModuleFileNameW(NULL, image, ARRAY_SIZE(image));
     ok(hr, "GetModuleFileName failed: %u\n", GetLastError());
 
     hr = INetFwAuthorizedApplication_get_ProcessImageFileName(app, NULL);
-- 
2.17.1




More information about the wine-devel mailing list