Hi all,
in PROFILE_LoadWineIni(), we return from processing in case we're not the boot thread only *after* having created HKLM\Software\Wine\Wine registry keys:
if (!CLIENT_IsBootThread()) return 1; /* already loaded */
Why ?? After all the registry is globally shared in wineserver, so it shouldn't be necessary to create them again via NtCreateKey if we're not the wine boot process.
Am I right ?