shlwapi: Remove two unused assignments (PVS-Studio).
This commit is contained in:
parent
725662003a
commit
a0e28403d4
|
@ -688,11 +688,11 @@ HRESULT WINAPI UrlCombineW(LPCWSTR pszBase, LPCWSTR pszRelative,
|
|||
/* Canonicalize the base input prior to looking for the scheme */
|
||||
myflags = dwFlags & (URL_DONT_SIMPLIFY | URL_UNESCAPE);
|
||||
len = INTERNET_MAX_URL_LENGTH;
|
||||
ret = UrlCanonicalizeW(pszBase, mbase, &len, myflags);
|
||||
UrlCanonicalizeW(pszBase, mbase, &len, myflags);
|
||||
|
||||
/* Canonicalize the relative input prior to looking for the scheme */
|
||||
len = INTERNET_MAX_URL_LENGTH;
|
||||
ret = UrlCanonicalizeW(pszRelative, mrelative, &len, myflags);
|
||||
UrlCanonicalizeW(pszRelative, mrelative, &len, myflags);
|
||||
|
||||
/* See if the base has a scheme */
|
||||
res1 = ParseURLW(mbase, &base);
|
||||
|
|
Loading…
Reference in New Issue