Commit 86ff8c08 authored by Alexandre Julliard's avatar Alexandre Julliard

Make sure HKLM\Software\Wine\Wine is a non-volatile key.

parent 0debf422
......@@ -931,8 +931,8 @@ int PROFILE_LoadWineIni(void)
FILE *f;
HKEY hKeySW;
/* make sure HKLM\\Software exists as non-volatile key */
if (RegCreateKeyA( HKEY_LOCAL_MACHINE, "Software", &hKeySW ))
/* make sure HKLM\\Software\\Wine\\Wine exists as non-volatile key */
if (RegCreateKeyA( HKEY_LOCAL_MACHINE, "Software\\Wine\\Wine", &hKeySW ))
{
ERR("Cannot create config registry key\n" );
return 0;
......
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