summaryrefslogtreecommitdiffstats
path: root/mandoc.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2015-10-13 23:30:50 +0000
committerIngo Schwarze <schwarze@openbsd.org>2015-10-13 23:30:50 +0000
commitcb192ac4eef122c00382d72fb72b907fd07e3516 (patch)
tree26828ad1e0df8603353e6c2eed7a5f351eef2678 /mandoc.c
parentb26f648a71b3259c793410232a0d3bbdd0aa54e3 (diff)
downloadmandoc-cb192ac4eef122c00382d72fb72b907fd07e3516.tar.gz
Reject the escape sequences \[uD800] to \[uDFFF] in the parser.
These surrogates are not valid Unicode codepoints, so treat them just like any other undefined character escapes: Warn about them and do not produce output. Issue noticed while talking to stsp@, semarie@, and bentley@.
Diffstat (limited to 'mandoc.c')
-rw-r--r--mandoc.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/mandoc.c b/mandoc.c
index 203d0858..275575cb 100644
--- a/mandoc.c
+++ b/mandoc.c
@@ -333,6 +333,9 @@ mandoc_escape(const char **end, const char **start, int *sz)
break;
if (*sz == 6 && (*start)[1] == '0')
break;
+ if (*sz == 5 && (*start)[1] == 'D' &&
+ strchr("89ABCDEF", (*start)[2]) != NULL)
+ break;
if ((int)strspn(*start + 1, "0123456789ABCDEFabcdef")
+ 1 == *sz)
gly = ESCAPE_UNICODE;