Commit 8d8a6272 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Partial UPnP fix from Christian Henz, from Ralf Huvendiek.

parent 70631390
...@@ -411,7 +411,9 @@ IXML_Document* parseBrowseResult( IXML_Document* doc ) ...@@ -411,7 +411,9 @@ IXML_Document* parseBrowseResult( IXML_Document* doc )
if ( !textNode ) return 0; if ( !textNode ) return 0;
const char* resultString = ixmlNode_getNodeValue( textNode ); const char* resultString = ixmlNode_getNodeValue( textNode );
char* resultXML = convert_xml_special_chars( resultString ); char* resultXML = strdup( resultString );
resolve_xml_special_chars( resultXML );
IXML_Document* browseDoc = ixmlParseBuffer( resultXML ); IXML_Document* browseDoc = ixmlParseBuffer( resultXML );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment