Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
d65758db
Commit
d65758db
authored
Aug 03, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Aug 03, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Use task destructor for start_request task.
parent
3be3074f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
navigate.c
dlls/mshtml/navigate.c
+8
-1
No files found.
dlls/mshtml/navigate.c
View file @
d65758db
...
...
@@ -1224,7 +1224,14 @@ static void stop_request_proc(task_t *_task)
list_remove
(
&
task
->
bsc
->
bsc
.
entry
);
list_init
(
&
task
->
bsc
->
bsc
.
entry
);
on_stop_nsrequest
(
task
->
bsc
,
S_OK
);
}
static
void
stop_request_task_destr
(
task_t
*
_task
)
{
stop_request_task_t
*
task
=
(
stop_request_task_t
*
)
_task
;
IBindStatusCallback_Release
(
&
task
->
bsc
->
bsc
.
IBindStatusCallback_iface
);
heap_free
(
task
);
}
static
HRESULT
async_stop_request
(
nsChannelBSC
*
This
)
...
...
@@ -1242,7 +1249,7 @@ static HRESULT async_stop_request(nsChannelBSC *This)
IBindStatusCallback_AddRef
(
&
This
->
bsc
.
IBindStatusCallback_iface
);
task
->
bsc
=
This
;
push_task
(
&
task
->
header
,
stop_request_proc
,
NULL
,
This
->
bsc
.
doc
->
basedoc
.
doc_obj
->
basedoc
.
task_magic
);
push_task
(
&
task
->
header
,
stop_request_proc
,
stop_request_task_destr
,
This
->
bsc
.
doc
->
basedoc
.
doc_obj
->
basedoc
.
task_magic
);
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