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
bce90cfb
Commit
bce90cfb
authored
Jan 11, 2006
by
Huw Davies
Committed by
Alexandre Julliard
Jan 11, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml: Fix for selectNodes when the node has no children.
parent
213d8a0f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
node.c
dlls/msxml3/node.c
+4
-1
No files found.
dlls/msxml3/node.c
View file @
bce90cfb
...
...
@@ -563,6 +563,9 @@ static HRESULT WINAPI xmlnode_selectNodes(
if
(
!
str
)
return
r
;
if
(
!
This
->
node
->
children
)
return
S_FALSE
;
*
resultList
=
create_filtered_nodelist
(
This
->
node
->
children
,
str
);
HeapFree
(
GetProcessHeap
(),
0
,
str
);
return
S_OK
;
...
...
@@ -580,7 +583,7 @@ static HRESULT WINAPI xmlnode_selectSingleNode(
TRACE
(
"%p %s %p
\n
"
,
This
,
debugstr_w
(
queryString
),
resultNode
);
r
=
IXMLDOMNode_selectNodes
(
iface
,
queryString
,
&
list
);
if
(
SUCCEEDED
(
r
)
)
if
(
r
==
S_OK
)
{
r
=
IXMLDOMNodeList_nextNode
(
list
,
resultNode
);
IXMLDOMNodeList_Release
(
list
);
...
...
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