26 Aug
2022
26 Aug
'22
4:54 a.m.
Chip Davis (@cdavis5e) commented about dlls/ntdll/unix/registry.c:
* NtLoadKey (NTDLL.@) */ NTSTATUS WINAPI NtLoadKey( const OBJECT_ATTRIBUTES *attr, OBJECT_ATTRIBUTES *file ) +{ + return NtLoadKeyEx(attr, file, 0, 0, 0, 0, NULL, NULL); +} This function is now missing a `TRACE()`. I don't know how much of a problem that is, since it's just forwarding to `NtLoadKeyEx()` anyway.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/717#note_6978