From fe373b28b7055a21511f40fc4174cedb392f16bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Wed, 9 Mar 2011 16:13:04 +0100 Subject: [PATCH] Fix problem with xml parser eating spaces after character entity references --- src/htsmsg_xml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/htsmsg_xml.c b/src/htsmsg_xml.c index 87ba6494..7c494770 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; }