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
3a1ce6a8
Commit
3a1ce6a8
authored
May 15, 2013
by
Jacek Caban
Committed by
Alexandre Julliard
May 15, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ieframe: Keep reference to ShellObject while calling DocumentComplete event.
parent
6621b11a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
shellbrowser.c
dlls/ieframe/shellbrowser.c
+7
-1
No files found.
dlls/ieframe/shellbrowser.c
View file @
3a1ce6a8
...
...
@@ -824,12 +824,18 @@ static HRESULT WINAPI DocObjectService_FireDocumentComplete(
V_VT
(
&
url_var
)
=
VT_BSTR
;
V_BSTR
(
&
url_var
)
=
url
;
/* Keep reference to This. It may be released in event handler. */
IShellBrowser_AddRef
(
&
This
->
IShellBrowser_iface
);
TRACE
(
">>>
\n
"
);
call_sink
(
This
->
doc_host
->
cps
.
wbe2
,
DISPID_DOCUMENTCOMPLETE
,
&
dp
);
TRACE
(
"<<<
\n
"
);
SysFreeString
(
url
);
This
->
doc_host
->
busy
=
VARIANT_FALSE
;
if
(
This
->
doc_host
)
This
->
doc_host
->
busy
=
VARIANT_FALSE
;
IShellBrowser_Release
(
&
This
->
IShellBrowser_iface
);
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