wineboot: Fixed 2 buffer sizes.

oldstable
Marcus Meissner 2010-10-24 12:32:26 +02:00 committed by Alexandre Julliard
parent 243d458909
commit a2dfa7d8a6
1 changed files with 2 additions and 2 deletions

View File

@ -351,7 +351,7 @@ static void create_volatile_environment_registry_key(void)
set_reg_value( hkey, HomeDriveW, path );
}
size = sizeof(path);
size = sizeof(path)/sizeof(path[0]);
if (GetUserNameW( path, &size )) set_reg_value( hkey, UserNameW, path );
set_reg_value( hkey, HomeShareW, EmptyW );
@ -360,7 +360,7 @@ static void create_volatile_environment_registry_key(void)
if (SUCCEEDED(hr))
set_reg_value( hkey, LocalAppDataW, path );
size = sizeof(computername) - 2;
size = (sizeof(computername)/sizeof(WCHAR)) - 2;
if (GetComputerNameW(&computername[2], &size))
{
computername[0] = computername[1] = '\\';