Changeset 4fb40a4b1dff58b216ddff79fe2535054dfaa18e
- Timestamp:
- 02/03/08 11:18:05
(7 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1202033885 +0000
- git-parent:
[cffd9d0fca7c28f12f54d4ba3a9ef90061754698]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1202033885 +0000
- Message:
libupnp: Don't unescape XML twice. Patch by Robson Braga Araujo
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rcffd9d0 |
r4fb40a4 |
|
| 189 | 189 | Richard Hosking <richard at hovis.net> - v4l2 support |
|---|
| 190 | 190 | Rob Casey <rob dot casey AT swishgroup dot com dot au> - Amino RTSP fix |
|---|
| | 191 | Robson Braga Araujo - UPnP discovery XML fix |
|---|
| 191 | 192 | Roine Gustafsson <roine at popstar.com> - spudec bug fixes |
|---|
| 192 | 193 | Roman Bednarek <roman at mikronika.com.pl> - MPL2 subtitles support |
|---|
| r99fab90 |
r4fb40a4 |
|
| 45 | 45 | #include <vlc/vlc.h> |
|---|
| 46 | 46 | #include <vlc_playlist.h> |
|---|
| 47 | | #include "vlc_strings.h" |
|---|
| 48 | 47 | |
|---|
| 49 | 48 | |
|---|
| … | … | |
| 398 | 397 | const char* resultString = ixmlNode_getNodeValue( textNode ); |
|---|
| 399 | 398 | char* resultXML = strdup( resultString ); |
|---|
| 400 | | |
|---|
| 401 | | resolve_xml_special_chars( resultXML ); |
|---|
| 402 | 399 | |
|---|
| 403 | 400 | IXML_Document* browseDoc = ixmlParseBuffer( resultXML ); |
|---|