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
a28b604f
Commit
a28b604f
authored
Sep 19, 2008
by
Piotr Caban
Committed by
Alexandre Julliard
Sep 22, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Change order of interface recognition and fix typo.
parent
d381c7cb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
12 deletions
+11
-12
saxreader.c
dlls/msxml3/saxreader.c
+11
-12
No files found.
dlls/msxml3/saxreader.c
View file @
a28b604f
...
@@ -1909,6 +1909,17 @@ static HRESULT WINAPI internal_parse(
...
@@ -1909,6 +1909,17 @@ static HRESULT WINAPI internal_parse(
IXMLDOMDocument
*
xmlDoc
;
IXMLDOMDocument
*
xmlDoc
;
if
(
IUnknown_QueryInterface
(
V_UNKNOWN
(
&
varInput
),
if
(
IUnknown_QueryInterface
(
V_UNKNOWN
(
&
varInput
),
&
IID_IXMLDOMDocument
,
(
void
**
)
&
xmlDoc
)
==
S_OK
)
{
BSTR
bstrData
;
IXMLDOMDocument_get_xml
(
xmlDoc
,
&
bstrData
);
hr
=
internal_parseBuffer
(
This
,
(
const
char
*
)
bstrData
,
SysStringByteLen
(
bstrData
),
vbInterface
);
IXMLDOMDocument_Release
(
xmlDoc
);
break
;
}
if
(
IUnknown_QueryInterface
(
V_UNKNOWN
(
&
varInput
),
&
IID_IPersistStream
,
(
void
**
)
&
persistStream
)
==
S_OK
)
&
IID_IPersistStream
,
(
void
**
)
&
persistStream
)
==
S_OK
)
{
{
hr
=
IPersistStream_Save
(
persistStream
,
stream
,
TRUE
);
hr
=
IPersistStream_Save
(
persistStream
,
stream
,
TRUE
);
...
@@ -1922,18 +1933,6 @@ static HRESULT WINAPI internal_parse(
...
@@ -1922,18 +1933,6 @@ static HRESULT WINAPI internal_parse(
IStream_Release
(
stream
);
IStream_Release
(
stream
);
break
;
break
;
}
}
if
(
IUnknown_QueryInterface
(
V_UNKNOWN
(
&
varInput
),
&
IID_IXMLDOMDocument
,
(
void
**
)
&
xmlDoc
)
==
S_OK
)
{
BSTR
bstrData
;
IXMLDOMDocument_get_xml
(
xmlDoc
,
&
bstrData
);
hr
=
internal_parseBuffer
(
This
,
(
const
char
*
)
bstrData
,
SysStringByteLen
(
bstrData
),
vbInterface
);
IXMLDOMDocument_Release
(
xmlDoc
);
hr
=
E_NOTIMPL
;
break
;
}
}
}
default:
default:
WARN
(
"vt %d not implemented
\n
"
,
V_VT
(
&
varInput
));
WARN
(
"vt %d not implemented
\n
"
,
V_VT
(
&
varInput
));
...
...
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