mirror of
https://github.com/michaelrsweet/mxml.git
synced 2024-11-24 11:25:30 +00:00
parent
01e2e50f17
commit
1afcfdbeb6
@ -1,5 +1,7 @@
|
||||
# Changes in Mini-XML CURRENT
|
||||
|
||||
- Fixed a potential crash bug in mxmldoc found by fuzzing (Issue #235,
|
||||
Issue #236)
|
||||
- The `mxmldoc` program now sets the EPUB subject ("Programming").
|
||||
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH mxml 3 "Mini-XML API" "10/02/18" "Mini-XML API"
|
||||
.TH mxml 3 "Mini-XML API" "12/01/18" "Mini-XML API"
|
||||
.SH NAME
|
||||
mxml \- Mini-XML API
|
||||
.SH INCLUDE FILE
|
||||
|
@ -3792,7 +3792,7 @@ write_element(FILE *out, /* I - Output file */
|
||||
write_string(out, node->value.text.string, mode);
|
||||
}
|
||||
|
||||
if (!strcmp(element->value.element.name, "type") &&
|
||||
if (!strcmp(element->value.element.name, "type") && element->last_child &&
|
||||
element->last_child->value.text.string[0] != '*')
|
||||
putc(' ', out);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user