diff options
| author | John MacFarlane <jgm@berkeley.edu> | 2019-11-11 12:55:33 -0800 | 
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2019-11-11 12:55:33 -0800 | 
| commit | 7b35d4bdc5e514ded03c0f0012983fe315a3aaf4 (patch) | |
| tree | 8a5e6b25cac90d264ba492470ec70f31bc6ea7a5 /src/houdini_html_u.c | |
| parent | cb1cd888cce0cae20a33663d6d17ef7630c5d4d7 (diff) | |
Cleaner approach to max digits for numeric entities.
This modifies unescaping in houdini_html_u.c rather than
the entity handling in inlines.c.  Unlike the other,
this approach works also in e.g. link titles.
Diffstat (limited to 'src/houdini_html_u.c')
| -rw-r--r-- | src/houdini_html_u.c | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/src/houdini_html_u.c b/src/houdini_html_u.c index 30d08aa..ce57ea1 100644 --- a/src/houdini_html_u.c +++ b/src/houdini_html_u.c @@ -42,6 +42,7 @@ bufsize_t houdini_unescape_ent(cmark_strbuf *ob, const uint8_t *src,    if (size >= 3 && src[0] == '#') {      int codepoint = 0;      int num_digits = 0; +    int max_digits = 7;      if (_isdigit(src[1])) {        for (i = 1; i < size && _isdigit(src[i]); ++i) { @@ -55,6 +56,7 @@ bufsize_t houdini_unescape_ent(cmark_strbuf *ob, const uint8_t *src,        }        num_digits = i - 1; +      max_digits = 7;      }      else if (src[1] == 'x' || src[1] == 'X') { @@ -69,9 +71,11 @@ bufsize_t houdini_unescape_ent(cmark_strbuf *ob, const uint8_t *src,        }        num_digits = i - 2; +      max_digits = 6;      } -    if (num_digits >= 1 && num_digits <= 8 && i < size && src[i] == ';') { +    if (num_digits >= 1 && num_digits <= max_digits && +		    i < size && src[i] == ';') {        if (codepoint == 0 || (codepoint >= 0xD800 && codepoint < 0xE000) ||            codepoint >= 0x110000) {          codepoint = 0xFFFD; | 
