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
fe252319
Commit
fe252319
authored
Sep 26, 2013
by
Jacek Caban
Committed by
Alexandre Julliard
Sep 26, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Use proper BINF flags for form submit.
parent
29d27ef6
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
navigate.c
dlls/mshtml/navigate.c
+6
-1
No files found.
dlls/mshtml/navigate.c
View file @
fe252319
...
...
@@ -1855,12 +1855,17 @@ HRESULT create_channelbsc(IMoniker *mon, const WCHAR *headers, BYTE *post_data,
BOOL
is_doc_binding
,
nsChannelBSC
**
retval
)
{
nsChannelBSC
*
ret
;
DWORD
bindf
;
ret
=
heap_alloc_zero
(
sizeof
(
*
ret
));
if
(
!
ret
)
return
E_OUTOFMEMORY
;
init_bscallback
(
&
ret
->
bsc
,
&
nsChannelBSCVtbl
,
mon
,
BINDF_ASYNCHRONOUS
|
BINDF_ASYNCSTORAGE
|
BINDF_PULLDATA
);
bindf
=
BINDF_ASYNCHRONOUS
|
BINDF_ASYNCSTORAGE
|
BINDF_PULLDATA
;
if
(
post_data_size
)
bindf
|=
BINDF_FORMS_SUBMIT
|
BINDF_PRAGMA_NO_CACHE
|
BINDF_HYPERLINK
|
BINDF_GETNEWESTVERSION
;
init_bscallback
(
&
ret
->
bsc
,
&
nsChannelBSCVtbl
,
mon
,
bindf
);
ret
->
is_doc_channel
=
is_doc_binding
;
if
(
headers
)
{
...
...
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