Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
d03d1439
Commit
d03d1439
authored
Apr 21, 2011
by
Konstantin Pavlov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UPNP: return NULL instead of 0 in xml_getChildElementValue.
parent
0369e651
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
modules/services_discovery/upnp.cpp
modules/services_discovery/upnp.cpp
+5
-5
No files found.
modules/services_discovery/upnp.cpp
View file @
d03d1439
...
...
@@ -154,18 +154,18 @@ static void Close( vlc_object_t *p_this )
const
char
*
xml_getChildElementValue
(
IXML_Element
*
p_parent
,
const
char
*
psz_tag_name_
)
{
if
(
!
p_parent
)
return
0
;
if
(
!
psz_tag_name_
)
return
0
;
if
(
!
p_parent
)
return
NULL
;
if
(
!
psz_tag_name_
)
return
NULL
;
IXML_NodeList
*
p_node_list
=
ixmlElement_getElementsByTagName
(
p_parent
,
psz_tag_name_
);
if
(
!
p_node_list
)
return
0
;
if
(
!
p_node_list
)
return
NULL
;
IXML_Node
*
p_element
=
ixmlNodeList_item
(
p_node_list
,
0
);
ixmlNodeList_free
(
p_node_list
);
if
(
!
p_element
)
return
0
;
if
(
!
p_element
)
return
NULL
;
IXML_Node
*
p_text_node
=
ixmlNode_getFirstChild
(
p_element
);
if
(
!
p_text_node
)
return
0
;
if
(
!
p_text_node
)
return
NULL
;
return
ixmlNode_getNodeValue
(
p_text_node
);
}
...
...
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