From b1ea463843add37874f9768b606825504cdc8eb2 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Fri, 13 Jun 2008 20:39:13 +0200 Subject: Hopefully fixed wrong libxml2 usage We did a xmlCleanupParser () call everytime we finished parsing; this is wrong (http://xmlsoft.org/html/libxml-parser.html#xmlCleanupParser) --- libpiano/xml.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'libpiano/xml.c') diff --git a/libpiano/xml.c b/libpiano/xml.c index 048f792..6f8cb55 100644 --- a/libpiano/xml.c +++ b/libpiano/xml.c @@ -203,7 +203,6 @@ void PianoXmlParseUserinfo (PianoHandle_t *ph, char *xml) { PianoXmlStructParser (structRoot, PianoXmlParseUserinfoCb, &ph->user); xmlFreeDoc (doc); - xmlCleanupParser(); } /* parse stations returned by pandora @@ -244,7 +243,6 @@ void PianoXmlParseStations (PianoHandle_t *ph, char *xml) { } xmlFreeDoc (doc); - xmlCleanupParser(); } /* parses playlist; used when searching too @@ -284,7 +282,6 @@ void PianoXmlParsePlaylist (PianoHandle_t *ph, char *xml) { } xmlFreeDoc (doc); - xmlCleanupParser(); } /* parse simple answers like this: @@ -310,7 +307,6 @@ PianoReturn_t PianoXmlParseSimple (char *xml) { } xmlFreeDoc (doc); - xmlCleanupParser(); return ret; } @@ -413,7 +409,6 @@ void PianoXmlParseSearch (char *searchXml, PianoXmlStructParser (structRoot, PianoXmlParseSearchCb, searchResult); xmlFreeDoc (doc); - xmlCleanupParser(); } /* encode reserved xml chars -- cgit v1.2.3