From 86ff8c0826a500f0dea05d5ebc7e5af8aa91c124 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Thu, 13 Apr 2000 16:10:20 +0000 Subject: [PATCH] Make sure HKLM\Software\Wine\Wine is a non-volatile key. --- files/profile.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/profile.c b/files/profile.c index e2920dc45e7..f4fa3bba1ff 100644 --- a/files/profile.c +++ b/files/profile.c @@ -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; -- 2.11.4.GIT