[PATCH] xolehlp: Use the ARRAY_SIZE() macro

Michael Stefaniuc mstefani at winehq.org
Fri Aug 10 05:27:49 CDT 2018


Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>
---
 dlls/xolehlp/xolehlp.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/xolehlp/xolehlp.c b/dlls/xolehlp/xolehlp.c
index 4714f8ced5..2a741f4914 100644
--- a/dlls/xolehlp/xolehlp.c
+++ b/dlls/xolehlp/xolehlp.c
@@ -650,7 +650,7 @@ static BOOL is_local_machineA( const CHAR *server )
 {
     static const CHAR dot[] = ".";
     CHAR buffer[MAX_COMPUTERNAME_LENGTH + 1];
-    DWORD len = sizeof(buffer) / sizeof(buffer[0]);
+    DWORD len = ARRAY_SIZE( buffer );
 
     if (!server || !strcmp( server, dot )) return TRUE;
     if (GetComputerNameA( buffer, &len ) && !lstrcmpiA( server, buffer )) return TRUE;
@@ -660,7 +660,7 @@ static BOOL is_local_machineW( const WCHAR *server )
 {
     static const WCHAR dotW[] = {'.',0};
     WCHAR buffer[MAX_COMPUTERNAME_LENGTH + 1];
-    DWORD len = sizeof(buffer) / sizeof(buffer[0]);
+    DWORD len = ARRAY_SIZE( buffer );
 
     if (!server || !strcmpW( server, dotW )) return TRUE;
     if (GetComputerNameW( buffer, &len ) && !strcmpiW( server, buffer )) return TRUE;
-- 
2.14.4




More information about the wine-devel mailing list