mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[REGEDIT] Work around a Wine bug. Fixes CORE-18603
See https://bugs.winehq.org/show_bug.cgi?id=54491
This commit is contained in:
parent
0fee1fc80c
commit
efb923073c
1 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue