[REGEDIT] Work around a Wine bug. Fixes CORE-18603

See https://bugs.winehq.org/show_bug.cgi?id=54491
This commit is contained in:
Robert Naumann 2023-02-14 22:19:38 +01:00
parent 0fee1fc80c
commit efb923073c

View file

@ -1510,6 +1510,9 @@ static BOOL export_key(WCHAR *file_name, WCHAR *path, BOOL unicode)
fclose(fp);
RegCloseKey(key);
#ifdef __REACTOS__ /* Fixes CORE-18603: Remove this when Wine Bug 54491 is fixed and synched back */
ret = TRUE;
#endif
return ret;
}