Fix a possible OutOfBoundsException

Change-Id: I6eb13c228738119c78496a96acaedbccefd83cd3
main
Jean Chalard 2011-10-06 19:05:23 +09:00
parent 3458d61807
commit c53661f152
1 changed files with 5 additions and 0 deletions

View File

@ -156,6 +156,11 @@ public class AndroidSpellCheckerService extends SpellCheckerService {
// }
return true;
}
if (insertIndex >= mMaxLength) {
// We found a suggestion, but its score is too weak to be kept considering
// the suggestion limit.
return true;
}
// Compute the normalized score and skip this word if it's normalized score does not
// make the threshold.