From: Stéphane Bidoul Date: Wed, 9 Mar 2011 15:13:04 +0000 (+0100) Subject: Fix problem with xml parser eating spaces after character entity references X-Git-Tag: 2.99~74 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fe373b28b7055a21511f40fc4174cedb392f16bc;p=thirdparty%2Ftvheadend.git Fix problem with xml parser eating spaces after character entity references --- diff --git a/src/htsmsg_xml.c b/src/htsmsg_xml.c index 87ba64944..7c4947704 100644 --- a/src/htsmsg_xml.c +++ b/src/htsmsg_xml.c @@ -637,7 +637,7 @@ htsmsg_xml_parse_cd0(xmlparser_t *xp, } if(cc == NULL) { - if(*src <= 32) { + if(*src < 32) { src++; continue; }