Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
DLNA-RUI
gupnp
Commits
8af8cc86
Commit
8af8cc86
authored
Nov 09, 2010
by
Zeeshan Ali (Khattak)
Browse files
Handle unavailability of URL base
parent
a0953965
Changes
1
Hide whitespace changes
Inline
Side-by-side
libgupnp/xml-util.c
View file @
8af8cc86
...
...
@@ -116,7 +116,10 @@ xml_util_get_child_element_content_uri (xmlNode *node,
if
(
!
content
)
return
NULL
;
uri
=
soup_uri_new_with_base
(
base
,
(
const
char
*
)
content
);
if
(
base
!=
NULL
)
uri
=
soup_uri_new_with_base
(
base
,
(
const
char
*
)
content
);
else
uri
=
soup_uri_new
((
const
char
*
)
content
);
xmlFree
(
content
);
...
...
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