crypt32: Do not use an empty body in an else-statement as documentation.

This commit is contained in:
Michael Stefaniuc 2007-12-10 11:47:36 +01:00 committed by Alexandre Julliard
parent 7f033ea065
commit 3e005ce915

View File

@ -523,8 +523,8 @@ static BOOL dns_name_matches(LPCWSTR constraint, LPCWSTR name,
else if (lstrlenW(name) >= lstrlenW(constraint)) else if (lstrlenW(name) >= lstrlenW(constraint))
match = !lstrcmpiW(name + lstrlenW(name) - lstrlenW(constraint), match = !lstrcmpiW(name + lstrlenW(name) - lstrlenW(constraint),
constraint); constraint);
else /* else: name is too short, no match */
; /* name is too short, no match */
return match; return match;
} }
@ -550,8 +550,8 @@ static BOOL ip_address_matches(const CRYPT_DATA_BLOB *constraint,
*/ */
match = (subnet & mask) == (addr & mask); match = (subnet & mask) == (addr & mask);
} }
else /* else: name is wrong size, no match */
; /* name is wrong size, no match */
return match; return match;
} }