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
75d4faab
Commit
75d4faab
authored
Oct 18, 2008
by
Andrew Talbot
Committed by
Alexandre Julliard
Oct 20, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Sign-compare warnings fix.
parent
36d01401
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
conpoint.c
dlls/mshtml/conpoint.c
+1
-1
htmldoc.c
dlls/mshtml/htmldoc.c
+1
-1
main.c
dlls/mshtml/main.c
+1
-1
nsembed.c
dlls/mshtml/nsembed.c
+1
-1
nsio.c
dlls/mshtml/nsio.c
+1
-1
protocol.c
dlls/mshtml/protocol.c
+1
-1
No files found.
dlls/mshtml/conpoint.c
View file @
75d4faab
...
...
@@ -213,7 +213,7 @@ void ConnectionPoint_Init(ConnectionPoint *cp, ConnectionPointContainer *contain
static
void
ConnectionPoint_Destroy
(
ConnectionPoint
*
This
)
{
int
i
;
DWORD
i
;
for
(
i
=
0
;
i
<
This
->
sinks_size
;
i
++
)
{
if
(
This
->
sinks
[
i
].
unk
)
...
...
dlls/mshtml/htmldoc.c
View file @
75d4faab
...
...
@@ -763,7 +763,7 @@ static HRESULT WINAPI HTMLDocument_write(IHTMLDocument2 *iface, SAFEARRAY *psarr
HTMLDocument
*
This
=
HTMLDOC_THIS
(
iface
);
nsAString
nsstr
;
VARIANT
*
var
;
int
i
;
ULONG
i
;
nsresult
nsres
;
HRESULT
hres
;
...
...
dlls/mshtml/main.c
View file @
75d4faab
...
...
@@ -318,7 +318,7 @@ static HRESULT register_server(BOOL do_register)
STRTABLEA
strtable
;
STRENTRYA
pse
[
35
];
static
CLSID
const
*
clsids
[
35
];
int
i
=
0
;
unsigned
int
i
=
0
;
static
const
WCHAR
wszAdvpack
[]
=
{
'a'
,
'd'
,
'v'
,
'p'
,
'a'
,
'c'
,
'k'
,
'.'
,
'd'
,
'l'
,
'l'
,
0
};
...
...
dlls/mshtml/nsembed.c
View file @
75d4faab
...
...
@@ -497,7 +497,7 @@ BOOL load_gecko(BOOL silent)
PRUnichar
gre_path
[
MAX_PATH
];
BOOL
ret
=
FALSE
;
static
LONG
loading_thread
;
static
DWORD
loading_thread
;
TRACE
(
"()
\n
"
);
...
...
dlls/mshtml/nsio.c
View file @
75d4faab
...
...
@@ -1583,7 +1583,7 @@ static nsresult NSAPI nsURI_SchemeIs(nsIWineURI *iface, const char *scheme, PRBo
WCHAR
buf
[
INTERNET_MAX_SCHEME_LENGTH
];
int
len
=
MultiByteToWideChar
(
CP_ACP
,
0
,
scheme
,
-
1
,
buf
,
sizeof
(
buf
)
/
sizeof
(
WCHAR
))
-
1
;
*
_retval
=
strlenW
(
This
->
wine_url
)
>
len
*
_retval
=
l
strlenW
(
This
->
wine_url
)
>
len
&&
This
->
wine_url
[
len
]
==
':'
&&
!
memcmp
(
buf
,
This
->
wine_url
,
len
*
sizeof
(
WCHAR
));
return
NS_OK
;
...
...
dlls/mshtml/protocol.c
View file @
75d4faab
...
...
@@ -424,7 +424,7 @@ static HRESULT WINAPI AboutProtocolInfo_ParseUrl(IInternetProtocolInfo *iface, L
dwParseFlags
,
pwzResult
,
cchResult
,
pcchResult
,
dwReserved
);
if
(
ParseAction
==
PARSE_SECURITY_URL
)
{
int
len
=
l
strlenW
(
pwzUrl
);
unsigned
int
len
=
strlenW
(
pwzUrl
);
if
(
len
>=
cchResult
)
return
S_FALSE
;
...
...
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