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
b2395e49
Commit
b2395e49
authored
Aug 01, 2007
by
Jacek Caban
Committed by
Alexandre Julliard
Aug 02, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shdocvw: Wrong PostData VT is not an error.
parent
b25b287e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
+4
-6
navigate.c
dlls/shdocvw/navigate.c
+4
-6
No files found.
dlls/shdocvw/navigate.c
View file @
b2395e49
...
...
@@ -528,16 +528,14 @@ HRESULT navigate_url(DocHost *This, BSTR url, VARIANT *Flags, VARIANT *TargetFra
||
(
TargetFrameName
&&
V_VT
(
TargetFrameName
)
!=
VT_EMPTY
))
FIXME
(
"Unsupported arguments
\n
"
);
if
(
PostData
&&
V_VT
(
PostData
)
!=
VT_EMPTY
&&
V_VT
(
PostData
)
!=
VT_ERROR
)
{
if
(
V_VT
(
PostData
)
!=
(
VT_ARRAY
|
VT_UI1
)
||
V_ARRAY
(
PostData
)
->
cDims
!=
1
)
{
WARN
(
"Invalid PostData
\n
"
);
return
E_INVALIDARG
;
}
if
(
PostData
)
{
TRACE
(
"PostData vt=%d
\n
"
,
V_VT
(
PostData
));
if
(
V_VT
(
PostData
)
==
(
VT_ARRAY
|
VT_UI1
))
{
SafeArrayAccessData
(
V_ARRAY
(
PostData
),
(
void
**
)
&
post_data
);
post_data_len
=
V_ARRAY
(
PostData
)
->
rgsabound
[
0
].
cElements
;
}
}
if
(
Headers
&&
V_VT
(
Headers
)
!=
VT_EMPTY
&&
V_VT
(
Headers
)
!=
VT_ERROR
)
{
if
(
V_VT
(
Headers
)
!=
VT_BSTR
)
...
...
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