diff options
Diffstat (limited to '')
-rw-r--r-- | common/estream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/estream.c b/common/estream.c index e712e85cd..254fab93a 100644 --- a/common/estream.c +++ b/common/estream.c @@ -3074,7 +3074,7 @@ es_write_sanitized (estream_t ES__RESTRICT stream, for (; length; length--, p++, count++) { if (*p < 0x20 - || (*p >= 0x7f && *p < 0xa0) + || *p == 0x7f || (delimiters && (strchr (delimiters, *p) || *p == '\\'))) { |