Fix problem with xml parser eating spaces after character entity references

This commit is contained in:
Stéphane Bidoul 2011-03-09 16:13:04 +01:00
parent dbcd2232c7
commit fe373b28b7

View file

@ -637,7 +637,7 @@ htsmsg_xml_parse_cd0(xmlparser_t *xp,
}
if(cc == NULL) {
if(*src <= 32) {
if(*src < 32) {
src++;
continue;
}