Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
9896d41c
Commit
9896d41c
authored
Feb 12, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Feb 14, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Fixed Valgrind warnings.
parent
99d9e0f6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
sec_mgr.c
dlls/urlmon/tests/sec_mgr.c
+5
-1
No files found.
dlls/urlmon/tests/sec_mgr.c
View file @
9896d41c
...
...
@@ -792,6 +792,10 @@ static void test_InternetGetSecurityUrl(void)
CHECK_CALLED
(
ParseUrl_SECURITY_URL_input2
);
CHECK_CALLED
(
ParseUrl_SECURITY_URL_expected
);
CHECK_CALLED
(
ParseUrl_SECURITY_DOMAIN_expected
);
ok
(
!
lstrcmpW
(
security_expectedW
,
sec
),
"Expected %s but got %s
\n
"
,
wine_dbgstr_w
(
security_expectedW
),
wine_dbgstr_w
(
sec
));
CoTaskMemFree
(
sec
);
}
static
HRESULT
WINAPI
InternetProtocolInfo_QueryInterface
(
IInternetProtocolInfo
*
iface
,
...
...
@@ -872,7 +876,7 @@ static HRESULT WINAPI InternetProtocolInfo_ParseUrl(IInternetProtocolInfo *iface
*
pcchResult
=
lstrlenW
(
ret
)
+
1
;
if
(
*
pcchResult
>
cchResult
)
return
S_FALSE
;
memcpy
(
pwzResult
,
ret
,
(
*
pcchResult
+
1
)
*
sizeof
(
WCHAR
));
memcpy
(
pwzResult
,
ret
,
(
*
pcchResult
)
*
sizeof
(
WCHAR
));
return
S_OK
;
}
...
...
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