urlmon: Simplify a (redundant) expression in parse_canonicalize.

This commit is contained in:
Gerald Pfeifer 2015-04-25 21:18:18 +02:00 committed by Alexandre Julliard
parent ad2c07888e
commit 2cfdaaef55
1 changed files with 1 additions and 2 deletions

View File

@ -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) {