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
9b4f0d76
Commit
9b4f0d76
authored
Jul 24, 2018
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Aug 14, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
inetcomm: Use the ARRAY_SIZE() macro.
Signed-off-by:
Michael Stefaniuc
<
mstefani@winehq.org
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
9ca68619
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
13 deletions
+12
-13
mimeole.c
dlls/inetcomm/mimeole.c
+3
-4
protocol.c
dlls/inetcomm/protocol.c
+9
-9
No files found.
dlls/inetcomm/mimeole.c
View file @
9b4f0d76
...
...
@@ -1581,9 +1581,8 @@ static HRESULT decode_base64(IStream *input, IStream **ret_stream)
while
(
1
)
{
/* skip invalid chars */
while
(
ptr
<
end
&&
(
*
ptr
>=
sizeof
(
base64_decode_table
)
/
sizeof
(
*
base64_decode_table
)
||
base64_decode_table
[
*
ptr
]
==
-
1
))
while
(
ptr
<
end
&&
(
*
ptr
>=
ARRAY_SIZE
(
base64_decode_table
)
||
base64_decode_table
[
*
ptr
]
==
-
1
))
ptr
++
;
if
(
ptr
==
end
)
break
;
...
...
@@ -3715,7 +3714,7 @@ HRESULT WINAPI MimeOleObjectFromMoniker(BINDF bindf, IMoniker *moniker, IBindCtx
return
E_OUTOFMEMORY
;
memcpy
(
mhtml_url
,
mhtml_prefixW
,
sizeof
(
mhtml_prefixW
));
strcpyW
(
mhtml_url
+
sizeof
(
mhtml_prefixW
)
/
sizeof
(
WCHAR
),
display_name
);
strcpyW
(
mhtml_url
+
ARRAY_SIZE
(
mhtml_prefixW
),
display_name
);
HeapFree
(
GetProcessHeap
(),
0
,
display_name
);
hres
=
CreateURLMoniker
(
NULL
,
mhtml_url
,
moniker_new
);
...
...
dlls/inetcomm/protocol.c
View file @
9b4f0d76
...
...
@@ -83,16 +83,16 @@ static HRESULT parse_mhtml_url(const WCHAR *url, mhtml_url_t *r)
{
const
WCHAR
*
p
;
if
(
strncmpiW
(
url
,
mhtml_prefixW
,
sizeof
(
mhtml_prefixW
)
/
sizeof
(
WCHAR
)))
if
(
strncmpiW
(
url
,
mhtml_prefixW
,
ARRAY_SIZE
(
mhtml_prefixW
)))
return
E_FAIL
;
r
->
mhtml
=
url
+
sizeof
(
mhtml_prefixW
)
/
sizeof
(
WCHAR
);
r
->
mhtml
=
url
+
ARRAY_SIZE
(
mhtml_prefixW
);
p
=
strchrW
(
r
->
mhtml
,
'!'
);
if
(
p
)
{
r
->
mhtml_len
=
p
-
r
->
mhtml
;
/* FIXME: We handle '!' and '!x-usc:' in URLs as the same thing. Those should not be the same. */
if
(
!
strncmpW
(
p
,
mhtml_separatorW
,
sizeof
(
mhtml_separatorW
)
/
sizeof
(
WCHAR
)))
p
+=
sizeof
(
mhtml_separatorW
)
/
sizeof
(
WCHAR
);
if
(
!
strncmpW
(
p
,
mhtml_separatorW
,
ARRAY_SIZE
(
mhtml_separatorW
)))
p
+=
ARRAY_SIZE
(
mhtml_separatorW
);
else
p
++
;
}
else
{
...
...
@@ -657,7 +657,7 @@ static HRESULT WINAPI MimeHtmlProtocolInfo_CombineUrl(IInternetProtocolInfo *ifa
DWORD
cchResult
,
DWORD
*
pcchResult
,
DWORD
dwReserved
)
{
MimeHtmlProtocol
*
This
=
impl_from_IInternetProtocolInfo
(
iface
);
size_t
len
=
sizeof
(
mhtml_prefixW
)
/
sizeof
(
WCHAR
);
size_t
len
=
ARRAY_SIZE
(
mhtml_prefixW
);
mhtml_url_t
url
;
WCHAR
*
p
;
HRESULT
hres
;
...
...
@@ -670,26 +670,26 @@ static HRESULT WINAPI MimeHtmlProtocolInfo_CombineUrl(IInternetProtocolInfo *ifa
if
(
FAILED
(
hres
))
return
hres
;
if
(
!
strncmpiW
(
pwzRelativeUrl
,
mhtml_prefixW
,
sizeof
(
mhtml_prefixW
)
/
sizeof
(
WCHAR
)))
{
if
(
!
strncmpiW
(
pwzRelativeUrl
,
mhtml_prefixW
,
ARRAY_SIZE
(
mhtml_prefixW
)))
{
FIXME
(
"Relative URL is mhtml protocol
\n
"
);
return
INET_E_USE_DEFAULT_PROTOCOLHANDLER
;
}
len
+=
url
.
mhtml_len
;
if
(
*
pwzRelativeUrl
)
len
+=
strlenW
(
pwzRelativeUrl
)
+
sizeof
(
mhtml_separatorW
)
/
sizeof
(
WCHAR
);
len
+=
strlenW
(
pwzRelativeUrl
)
+
ARRAY_SIZE
(
mhtml_separatorW
);
if
(
len
>=
cchResult
)
{
*
pcchResult
=
0
;
return
E_FAIL
;
}
memcpy
(
pwzResult
,
mhtml_prefixW
,
sizeof
(
mhtml_prefixW
));
p
=
pwzResult
+
sizeof
(
mhtml_prefixW
)
/
sizeof
(
WCHAR
);
p
=
pwzResult
+
ARRAY_SIZE
(
mhtml_prefixW
);
memcpy
(
p
,
url
.
mhtml
,
url
.
mhtml_len
*
sizeof
(
WCHAR
));
p
+=
url
.
mhtml_len
;
if
(
*
pwzRelativeUrl
)
{
memcpy
(
p
,
mhtml_separatorW
,
sizeof
(
mhtml_separatorW
));
p
+=
sizeof
(
mhtml_separatorW
)
/
sizeof
(
WCHAR
);
p
+=
ARRAY_SIZE
(
mhtml_separatorW
);
strcpyW
(
p
,
pwzRelativeUrl
);
}
else
{
*
p
=
0
;
...
...
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