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
58aa5471
Commit
58aa5471
authored
Jan 18, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Jan 18, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Return error in IInternetHostSecurityManager calls on detached documents.
parent
e5baa750
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
secmgr.c
dlls/mshtml/secmgr.c
+6
-0
No files found.
dlls/mshtml/secmgr.c
View file @
58aa5471
...
...
@@ -80,6 +80,9 @@ static HRESULT WINAPI InternetHostSecurityManager_ProcessUrlAction(IInternetHost
TRACE
(
"(%p)->(%d %p %d %p %d %x %x)
\n
"
,
This
,
dwAction
,
pPolicy
,
cbPolicy
,
pContext
,
cbContext
,
dwFlags
,
dwReserved
);
if
(
!
This
->
basedoc
.
window
)
return
E_UNEXPECTED
;
url
=
This
->
basedoc
.
window
->
url
?
This
->
basedoc
.
window
->
url
:
about_blankW
;
return
IInternetSecurityManager_ProcessUrlAction
(
This
->
basedoc
.
window
->
secmgr
,
url
,
dwAction
,
pPolicy
,
cbPolicy
,
...
...
@@ -184,6 +187,9 @@ static HRESULT WINAPI InternetHostSecurityManager_QueryCustomPolicy(IInternetHos
TRACE
(
"(%p)->(%s %p %p %p %d %x)
\n
"
,
This
,
debugstr_guid
(
guidKey
),
ppPolicy
,
pcbPolicy
,
pContext
,
cbContext
,
dwReserved
);
if
(
!
This
->
basedoc
.
window
)
return
E_UNEXPECTED
;
url
=
This
->
basedoc
.
window
->
url
?
This
->
basedoc
.
window
->
url
:
about_blankW
;
hres
=
IInternetSecurityManager_QueryCustomPolicy
(
This
->
basedoc
.
window
->
secmgr
,
url
,
guidKey
,
ppPolicy
,
pcbPolicy
,
...
...
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