Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
4fb40a4b
Commit
4fb40a4b
authored
Feb 03, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libupnp: Don't unescape XML twice. Patch by Robson Braga Araujo
parent
cffd9d0f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
3 deletions
+1
-3
THANKS
THANKS
+1
-0
modules/services_discovery/upnp_intel.cpp
modules/services_discovery/upnp_intel.cpp
+0
-3
No files found.
THANKS
View file @
4fb40a4b
...
...
@@ -188,6 +188,7 @@ Remco Poortinga <poortinga at telin.nl> - IPv6 multicast patch
Rene Gollent <rgollent at u.arizona.edu> - BeOS interface fix
Richard Hosking <richard at hovis.net> - v4l2 support
Rob Casey <rob dot casey AT swishgroup dot com dot au> - Amino RTSP fix
Robson Braga Araujo - UPnP discovery XML fix
Roine Gustafsson <roine at popstar.com> - spudec bug fixes
Roman Bednarek <roman at mikronika.com.pl> - MPL2 subtitles support
Rudolf Cornelissen <rag.cornelissen at inter.nl.net> - BeOS fixes
...
...
modules/services_discovery/upnp_intel.cpp
View file @
4fb40a4b
...
...
@@ -44,7 +44,6 @@
#include <vlc/vlc.h>
#include <vlc_playlist.h>
#include "vlc_strings.h"
// VLC handle
...
...
@@ -398,8 +397,6 @@ IXML_Document* parseBrowseResult( IXML_Document* doc )
const
char
*
resultString
=
ixmlNode_getNodeValue
(
textNode
);
char
*
resultXML
=
strdup
(
resultString
);
resolve_xml_special_chars
(
resultXML
);
IXML_Document
*
browseDoc
=
ixmlParseBuffer
(
resultXML
);
free
(
resultXML
);
...
...
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