Fix for the bug 3506114: potential crash in replace_invalid
git-svn-id: http://svn.code.sf.net/p/utfcpp/code@130 a809a056-fc17-0410-9590-b4f493f8b08e
This commit is contained in:
parent
cd80d5fa9e
commit
adb7687b2f
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ namespace utf8
|
|||
utf8::append (replacement, out);
|
||||
++start;
|
||||
// just one replacement mark for the sequence
|
||||
while (utf8::internal::is_trail(*start) && start != end)
|
||||
while (start != end && utf8::internal::is_trail(*start))
|
||||
++start;
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue