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
402b1001
Commit
402b1001
authored
Mar 05, 2013
by
Piotr Caban
Committed by
Alexandre Julliard
Mar 05, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ieframe: Pass BSTR to handle_navigation_error.
parent
d5a4621b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
navigate.c
dlls/ieframe/navigate.c
+3
-3
No files found.
dlls/ieframe/navigate.c
View file @
402b1001
...
...
@@ -45,7 +45,7 @@ typedef struct {
DocHost
*
doc_host
;
IBinding
*
binding
;
LPW
STR
url
;
B
STR
url
;
HGLOBAL
post_data
;
BSTR
headers
;
ULONG
post_data_len
;
...
...
@@ -206,7 +206,7 @@ static ULONG WINAPI BindStatusCallback_Release(IBindStatusCallback *iface)
if
(
This
->
post_data
)
GlobalFree
(
This
->
post_data
);
SysFreeString
(
This
->
headers
);
heap_free
(
This
->
url
);
SysFreeString
(
This
->
url
);
heap_free
(
This
);
}
...
...
@@ -543,7 +543,7 @@ static BindStatusCallback *create_callback(DocHost *doc_host, LPCWSTR url, PBYTE
ret
->
IHttpSecurity_iface
.
lpVtbl
=
&
HttpSecurityVtbl
;
ret
->
ref
=
1
;
ret
->
url
=
heap_strdupW
(
url
);
ret
->
url
=
SysAllocString
(
url
);
ret
->
post_data
=
NULL
;
ret
->
post_data_len
=
post_data_len
;
ret
->
headers
=
headers
?
SysAllocString
(
headers
)
:
NULL
;
...
...
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