]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
Fix problem with xml parser eating spaces after character entity references 23/head
authorStéphane Bidoul <sbi@skynet.be>
Wed, 9 Mar 2011 15:13:04 +0000 (16:13 +0100)
committerStéphane Bidoul <sbi@skynet.be>
Sat, 26 Mar 2011 15:31:34 +0000 (16:31 +0100)
src/htsmsg_xml.c

index 87ba64944f440fc221c827f8e91d68ca75aa0d0c..7c49477048f379383b0452c69075a1803b3002df 100644 (file)
@@ -637,7 +637,7 @@ htsmsg_xml_parse_cd0(xmlparser_t *xp,
     }
 
     if(cc == NULL) {
-      if(*src <= 32) {
+      if(*src < 32) {
        src++;
        continue;
       }