mirror of
https://github.com/reactos/wine.git
synced 2025-01-23 12:25:17 +00:00
crypt32: Do not use an empty body in an else-statement as documentation.
This commit is contained in:
parent
7f033ea065
commit
3e005ce915
@ -523,8 +523,8 @@ static BOOL dns_name_matches(LPCWSTR constraint, LPCWSTR name,
|
||||
else if (lstrlenW(name) >= lstrlenW(constraint))
|
||||
match = !lstrcmpiW(name + lstrlenW(name) - lstrlenW(constraint),
|
||||
constraint);
|
||||
else
|
||||
; /* name is too short, no match */
|
||||
/* else: name is too short, no match */
|
||||
|
||||
return match;
|
||||
}
|
||||
|
||||
@ -550,8 +550,8 @@ static BOOL ip_address_matches(const CRYPT_DATA_BLOB *constraint,
|
||||
*/
|
||||
match = (subnet & mask) == (addr & mask);
|
||||
}
|
||||
else
|
||||
; /* name is wrong size, no match */
|
||||
/* else: name is wrong size, no match */
|
||||
|
||||
return match;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user