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
780aff0b
Commit
780aff0b
authored
Aug 10, 2009
by
Jacek Caban
Committed by
Alexandre Julliard
Aug 11, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Call stop_binding before releasing binding object.
parent
0c862dea
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
navigate.c
dlls/mshtml/navigate.c
+5
-1
No files found.
dlls/mshtml/navigate.c
View file @
780aff0b
...
...
@@ -344,19 +344,23 @@ static HRESULT WINAPI BindStatusCallback_OnStopBinding(IBindStatusCallback *ifac
HRESULT
hresult
,
LPCWSTR
szError
)
{
BSCallback
*
This
=
STATUSCLB_THIS
(
iface
);
HRESULT
hres
;
TRACE
(
"(%p)->(%08x %s)
\n
"
,
This
,
hresult
,
debugstr_w
(
szError
));
/* NOTE: IE7 calls GetBindResult here */
hres
=
This
->
vtbl
->
stop_binding
(
This
,
hresult
);
if
(
This
->
binding
)
{
IBinding_Release
(
This
->
binding
);
This
->
binding
=
NULL
;
}
list_remove
(
&
This
->
entry
);
This
->
doc
=
NULL
;
return
This
->
vtbl
->
stop_binding
(
This
,
hresult
)
;
return
hres
;
}
static
HRESULT
WINAPI
BindStatusCallback_GetBindInfo
(
IBindStatusCallback
*
iface
,
...
...
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