Fix problem with xml parser eating spaces after character entity references
This commit is contained in:
parent
dbcd2232c7
commit
fe373b28b7
1 changed files with 1 additions and 1 deletions
|
@ -637,7 +637,7 @@ htsmsg_xml_parse_cd0(xmlparser_t *xp,
|
|||
}
|
||||
|
||||
if(cc == NULL) {
|
||||
if(*src <= 32) {
|
||||
if(*src < 32) {
|
||||
src++;
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue