urlmon: Simplify a (redundant) expression in parse_canonicalize.
This commit is contained in:
parent
ad2c07888e
commit
2cfdaaef55
|
@ -6842,8 +6842,7 @@ static HRESULT parse_canonicalize(const Uri *uri, DWORD flags, LPWSTR output,
|
|||
ptr = uri->canon_uri+uri->scheme_start+uri->scheme_len+1;
|
||||
pptr = &ptr;
|
||||
}
|
||||
reduce_path = !(flags & URL_NO_META) &&
|
||||
!(flags & URL_DONT_SIMPLIFY) &&
|
||||
reduce_path = !(flags & URL_DONT_SIMPLIFY) &&
|
||||
ptr && check_hierarchical(pptr);
|
||||
|
||||
for(ptr = uri->canon_uri; ptr < uri->canon_uri+uri->canon_len; ++ptr) {
|
||||
|
|
Loading…
Reference in New Issue