From 152e46a6dac1f89f1c666ffa742671b330e6d6d5 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Wed, 21 May 2014 00:25:24 +0100 Subject: [PATCH] Make utif_iterator more tolerant to invalid utf8 --- src/utf8_iterator.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utf8_iterator.hh b/src/utf8_iterator.hh index 4fa206b3..cc1d3b47 100644 --- a/src/utf8_iterator.hh +++ b/src/utf8_iterator.hh @@ -104,7 +104,7 @@ public: check_invariant(); other.check_invariant(); CharCount dist = 0; - while (other.m_it != m_it) + while (other.m_it < m_it) { ++dist; ++other;