mirror of
https://github.com/reactos/wine.git
synced 2025-02-02 10:12:01 +00:00
crypt32: Fix return value in error cases (clang).
This commit is contained in:
parent
a7534610a3
commit
bcd14a1822
@ -3213,7 +3213,8 @@ static BOOL match_domain_component(LPCWSTR allowed_component, DWORD allowed_len,
|
||||
break;
|
||||
}
|
||||
}
|
||||
matches = tolowerW(*allowed_ptr) == tolowerW(*server_ptr);
|
||||
if (matches)
|
||||
matches = tolowerW(*allowed_ptr) == tolowerW(*server_ptr);
|
||||
}
|
||||
if (matches && server_ptr - server_component < server_len)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user