From 026aed63d9e31bb12f3925c09a1da94cfe5cc826 Mon Sep 17 00:00:00 2001 From: Gleb Mazovetskiy Date: Wed, 28 Nov 2018 00:39:15 +0000 Subject: [PATCH] replace_invalid: Replace final incomplete sequence In replace_invalid, if NOT_ENOUGH_ROOM is returned by `validate_next` then it simply means there is an incomplete sequence at the end of the input. Replace it instead of erroring out. --- source/utf8/checked.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/utf8/checked.h b/source/utf8/checked.h index 2aef583..a062f85 100644 --- a/source/utf8/checked.h +++ b/source/utf8/checked.h @@ -107,7 +107,9 @@ namespace utf8 *out++ = *it; break; case internal::NOT_ENOUGH_ROOM: - throw not_enough_room(); + out = utf8::append (replacement, out); + start = end; + break; case internal::INVALID_LEAD: out = utf8::append (replacement, out); ++start;