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
5c57c838
Commit
5c57c838
authored
Oct 07, 2007
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 09, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Fixed test on IE7.
parent
d8ba5bf2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
sec_mgr.c
dlls/urlmon/sec_mgr.c
+3
-1
misc.c
dlls/urlmon/tests/misc.c
+1
-1
No files found.
dlls/urlmon/sec_mgr.c
View file @
5c57c838
...
...
@@ -251,8 +251,10 @@ static HRESULT WINAPI SecManagerImpl_MapUrlToZone(IInternetSecurityManager *ifac
return
hres
;
}
if
(
!
pwszUrl
)
if
(
!
pwszUrl
)
{
*
pdwZone
=
-
1
;
return
E_INVALIDARG
;
}
if
(
dwFlags
)
FIXME
(
"not supported flags: %08x
\n
"
,
dwFlags
);
...
...
dlls/urlmon/tests/misc.c
View file @
5c57c838
...
...
@@ -691,7 +691,7 @@ static void test_SecurityManager(void)
zone
=
100
;
hres
=
IInternetSecurityManager_MapUrlToZone
(
secmgr
,
NULL
,
&
zone
,
0
);
ok
(
hres
==
E_INVALIDARG
,
"MapUrlToZone failed: %08x, expected E_INVALIDARG
\n
"
,
hres
);
ok
(
zone
==
100
,
"zone=%d
\n
"
,
zone
);
ok
(
zone
==
100
||
zone
==
-
1
,
"zone=%d
\n
"
,
zone
);
size
=
sizeof
(
buf
);
hres
=
IInternetSecurityManager_GetSecurityId
(
secmgr
,
NULL
,
buf
,
&
size
,
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