Fix for [3167987]: prior moves it before start

git-svn-id: http://svn.code.sf.net/p/utfcpp/code@116 a809a056-fc17-0410-9590-b4f493f8b08e
This commit is contained in:
ntrifunovic 2011-02-15 01:18:49 +00:00 committed by King_DuckZ
parent 7fcdf850d9
commit 045624abd7
2 changed files with 22 additions and 18 deletions

View file

@ -162,12 +162,16 @@ namespace utf8
template <typename octet_iterator>
uint32_t prior(octet_iterator& it, octet_iterator start)
{
// can't do much if it == start
if (it == start)
throw not_enough_room();
octet_iterator end = it;
// Go back until we hit either a lead octet or start
while (internal::is_trail(*(--it)))
if (it < start)
if (it == start)
throw invalid_utf8(*it); // error - no lead byte in the sequence
octet_iterator temp = it;
return next(temp, end);
return peek_next(it, end);
}
/// Deprecated in versions that include "prior"