summaryrefslogtreecommitdiff
path: root/source/fitz
diff options
context:
space:
mode:
Diffstat (limited to 'source/fitz')
-rw-r--r--source/fitz/xml.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/fitz/xml.c b/source/fitz/xml.c
index 31565980..b7804fc4 100644
--- a/source/fitz/xml.c
+++ b/source/fitz/xml.c
@@ -551,7 +551,11 @@ parse_attributes:
while (iswhite(*p)) ++p;
if (isname(*p))
goto parse_attribute_name;
- if (*p == '>') { ++p; goto parse_text; }
+ if (*p == '>') {
+ ++p;
+ if (*p == '\n') ++p; /* must skip linebreak immediately after an opening tag */
+ goto parse_text;
+ }
if (p[0] == '/' && p[1] == '>') {
xml_emit_close_tag(ctx, parser);
p += 2;