Michael Stefaniuc : xolehlp: Use wide-char string literals.

Alexandre Julliard julliard at winehq.org
Mon Oct 5 15:54:57 CDT 2020


Module: wine
Branch: master
Commit: eede9959edb5a91ada6651a10ca6ba257e213c63
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=eede9959edb5a91ada6651a10ca6ba257e213c63

Author: Michael Stefaniuc <mstefani at winehq.org>
Date:   Sat Oct  3 20:28:30 2020 +0200

xolehlp: Use wide-char string literals.

Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/xolehlp/xolehlp.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dlls/xolehlp/xolehlp.c b/dlls/xolehlp/xolehlp.c
index 4baf31f260..29b3024445 100644
--- a/dlls/xolehlp/xolehlp.c
+++ b/dlls/xolehlp/xolehlp.c
@@ -657,11 +657,10 @@ static BOOL is_local_machineA( const CHAR *server )
 }
 static BOOL is_local_machineW( const WCHAR *server )
 {
-    static const WCHAR dotW[] = {'.',0};
     WCHAR buffer[MAX_COMPUTERNAME_LENGTH + 1];
     DWORD len = ARRAY_SIZE( buffer );
 
-    if (!server || !wcscmp( server, dotW )) return TRUE;
+    if (!server || !wcscmp( server, L"." )) return TRUE;
     if (GetComputerNameW( buffer, &len ) && !wcsicmp( server, buffer )) return TRUE;
     return FALSE;
 }




More information about the wine-cvs mailing list