Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
e988fea4
Commit
e988fea4
authored
Sep 16, 2004
by
Mike McCormack
Committed by
Alexandre Julliard
Sep 16, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some -Wsigned-compare warnings.
parent
2d044dd6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
ordinal.c
dlls/shlwapi/ordinal.c
+2
-2
url.c
dlls/shlwapi/url.c
+2
-1
No files found.
dlls/shlwapi/ordinal.c
View file @
e988fea4
...
...
@@ -576,8 +576,8 @@ HRESULT WINAPI GetAcceptLanguagesW( LPWSTR langbuf, LPDWORD buflen)
}
memcpy
(
langbuf
,
mystr
,
min
(
*
buflen
,
strlenW
(
mystr
)
+
1
)
*
sizeof
(
WCHAR
)
);
if
(
*
buflen
>
l
strlenW
(
mystr
))
{
*
buflen
=
l
strlenW
(
mystr
);
if
(
*
buflen
>
strlenW
(
mystr
))
{
*
buflen
=
strlenW
(
mystr
);
retval
=
S_OK
;
}
else
{
*
buflen
=
0
;
...
...
dlls/shlwapi/url.c
View file @
e988fea4
...
...
@@ -459,7 +459,8 @@ HRESULT WINAPI UrlCanonicalizeW(LPCWSTR pszUrl, LPWSTR pszCanonicalized,
HRESULT
hr
=
S_OK
;
DWORD
EscapeFlags
;
LPWSTR
lpszUrlCpy
,
wk1
,
wk2
,
mp
,
root
;
INT
nLen
,
nByteLen
,
state
;
INT
nByteLen
,
state
;
DWORD
nLen
;
TRACE
(
"(%s %p %p 0x%08lx)
\n
"
,
debugstr_w
(
pszUrl
),
pszCanonicalized
,
pcchCanonicalized
,
dwFlags
);
...
...
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