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