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
6a7bf66b
Commit
6a7bf66b
authored
May 07, 2013
by
Nikolay Sivov
Committed by
Alexandre Julliard
May 07, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Explicitly use NULL_tid to terminate support error id arrays.
parent
ea919d9d
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
9 additions
and
9 deletions
+9
-9
attribute.c
dlls/msxml3/attribute.c
+1
-1
cdata.c
dlls/msxml3/cdata.c
+1
-1
comment.c
dlls/msxml3/comment.c
+1
-1
docfrag.c
dlls/msxml3/docfrag.c
+1
-1
domdoc.c
dlls/msxml3/domdoc.c
+1
-1
element.c
dlls/msxml3/element.c
+1
-1
entityref.c
dlls/msxml3/entityref.c
+1
-1
node.c
dlls/msxml3/node.c
+1
-1
pi.c
dlls/msxml3/pi.c
+1
-1
No files found.
dlls/msxml3/attribute.c
View file @
6a7bf66b
...
...
@@ -53,7 +53,7 @@ typedef struct _domattr
static
const
tid_t
domattr_se_tids
[]
=
{
IXMLDOMNode_tid
,
IXMLDOMAttribute_tid
,
0
NULL_tid
};
static
inline
domattr
*
impl_from_IXMLDOMAttribute
(
IXMLDOMAttribute
*
iface
)
...
...
dlls/msxml3/cdata.c
View file @
6a7bf66b
...
...
@@ -52,7 +52,7 @@ typedef struct
static
const
tid_t
domcdata_se_tids
[]
=
{
IXMLDOMNode_tid
,
IXMLDOMCDATASection_tid
,
0
NULL_tid
};
static
inline
domcdata
*
impl_from_IXMLDOMCDATASection
(
IXMLDOMCDATASection
*
iface
)
...
...
dlls/msxml3/comment.c
View file @
6a7bf66b
...
...
@@ -52,7 +52,7 @@ typedef struct _domcomment
static
const
tid_t
domcomment_se_tids
[]
=
{
IXMLDOMNode_tid
,
IXMLDOMComment_tid
,
0
NULL_tid
};
static
inline
domcomment
*
impl_from_IXMLDOMComment
(
IXMLDOMComment
*
iface
)
...
...
dlls/msxml3/docfrag.c
View file @
6a7bf66b
...
...
@@ -52,7 +52,7 @@ typedef struct _domfrag
static
const
tid_t
domfrag_se_tids
[]
=
{
IXMLDOMNode_tid
,
IXMLDOMDocumentFragment_tid
,
0
NULL_tid
};
static
inline
domfrag
*
impl_from_IXMLDOMDocumentFragment
(
IXMLDOMDocumentFragment
*
iface
)
...
...
dlls/msxml3/domdoc.c
View file @
6a7bf66b
...
...
@@ -859,7 +859,7 @@ static const tid_t domdoc_se_tids[] = {
IXMLDOMDocument_tid
,
IXMLDOMDocument2_tid
,
IXMLDOMDocument3_tid
,
0
NULL_tid
};
static
HRESULT
WINAPI
domdoc_QueryInterface
(
IXMLDOMDocument3
*
iface
,
REFIID
riid
,
void
**
ppvObject
)
...
...
dlls/msxml3/element.c
View file @
6a7bf66b
...
...
@@ -58,7 +58,7 @@ static const struct nodemap_funcs domelem_attr_map;
static
const
tid_t
domelem_se_tids
[]
=
{
IXMLDOMNode_tid
,
IXMLDOMElement_tid
,
0
NULL_tid
};
static
inline
domelem
*
impl_from_IXMLDOMElement
(
IXMLDOMElement
*
iface
)
...
...
dlls/msxml3/entityref.c
View file @
6a7bf66b
...
...
@@ -52,7 +52,7 @@ typedef struct _entityref
static
const
tid_t
domentityref_se_tids
[]
=
{
IXMLDOMNode_tid
,
IXMLDOMEntityReference_tid
,
0
NULL_tid
};
static
inline
entityref
*
impl_from_IXMLDOMEntityReference
(
IXMLDOMEntityReference
*
iface
)
...
...
dlls/msxml3/node.c
View file @
6a7bf66b
...
...
@@ -150,7 +150,7 @@ static HRESULT WINAPI SupportErrorInfo_InterfaceSupportsErrorInfo(ISupportErrorI
TRACE
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_guid
(
riid
));
tid
=
This
->
iids
;
while
(
*
tid
)
while
(
*
tid
!=
NULL_tid
)
{
if
(
IsEqualGUID
(
riid
,
get_riid_from_tid
(
*
tid
)))
return
S_OK
;
...
...
dlls/msxml3/pi.c
View file @
6a7bf66b
...
...
@@ -54,7 +54,7 @@ static const struct nodemap_funcs dom_pi_attr_map;
static
const
tid_t
dompi_se_tids
[]
=
{
IXMLDOMNode_tid
,
IXMLDOMProcessingInstruction_tid
,
0
NULL_tid
};
static
inline
dom_pi
*
impl_from_IXMLDOMProcessingInstruction
(
IXMLDOMProcessingInstruction
*
iface
)
...
...
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