Re: [PATCH v13 0/6] MR1445: kernelbase: Some refactoring of the open_key() and create_key() functions.
23 Feb
2023
23 Feb
'23
8:27 p.m.
Alexandre Julliard (@julliard) commented about dlls/kernelbase/registry.c:
static BOOL is_wow6432node( const UNICODE_STRING *name ) { - return (name->Length == 11 * sizeof(WCHAR) && !wcsnicmp( name->Buffer, L"Wow6432Node", 11 )); + return (name->Length >= 11 * sizeof(WCHAR) && !wcsnicmp( name->Buffer, L"Wow6432Node", 11 ));
This doesn't look right, we need an exact match. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1445#note_25333
1028
Age (days ago)
1028
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard (@julliard)