Commit ec636f15 authored by Alexandre Julliard's avatar Alexandre Julliard

advapi32: Avoid slashes and backslashes in user names.

parent 2d87a7bb
......@@ -84,7 +84,7 @@ BOOL WINAPI
GetUserNameW( LPWSTR lpszName, LPDWORD lpSize )
{
const char *name = wine_get_user_name();
DWORD len = MultiByteToWideChar( CP_UNIXCP, 0, name, -1, NULL, 0 );
DWORD i, len = MultiByteToWideChar( CP_UNIXCP, 0, name, -1, NULL, 0 );
if (len > *lpSize)
{
......@@ -95,6 +95,12 @@ GetUserNameW( LPWSTR lpszName, LPDWORD lpSize )
*lpSize = len;
MultiByteToWideChar( CP_UNIXCP, 0, name, -1, lpszName, len );
/* Word uses the user name to create named mutexes and file mappings,
* and backslashes in the name cause the creation to fail.
*/
for (i = 0; lpszName[i]; i++)
if (lpszName[i] == '\\' || lpszName[i] == '/') lpszName[i] = '_';
return TRUE;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment