Add missing test for off the end
git-svn-id: https://cld2.googlecode.com/svn/trunk@72 b252ecd4-b096-bf77-eb8e-91563289f87e
This commit is contained in:
@@ -968,6 +968,7 @@ bool ScriptScanner::GetOneScriptSpan(LangSpan* span) {
|
|||||||
tlen = ScanToLetterOrSpecial(next_byte_ + take, byte_length_ - take);
|
tlen = ScanToLetterOrSpecial(next_byte_ + take, byte_length_ - take);
|
||||||
take += tlen;
|
take += tlen;
|
||||||
map2original_.Delete(tlen);
|
map2original_.Delete(tlen);
|
||||||
|
if (take >= byte_length_) {break;} // Might have scanned to end
|
||||||
|
|
||||||
// We are at a letter, nonletter, tag, or entity
|
// We are at a letter, nonletter, tag, or entity
|
||||||
if (IsSpecial(next_byte_[take]) && !is_plain_text_) {
|
if (IsSpecial(next_byte_[take]) && !is_plain_text_) {
|
||||||
|
Reference in New Issue
Block a user