Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
a0e28403
Commit
a0e28403
authored
Mar 04, 2015
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Mar 04, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi: Remove two unused assignments (PVS-Studio).
parent
72566200
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
url.c
dlls/shlwapi/url.c
+2
-2
No files found.
dlls/shlwapi/url.c
View file @
a0e28403
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment