aboutsummaryrefslogtreecommitdiffstats
path: root/java/src
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2013-10-09 21:26:18 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-10-09 21:26:18 -0700
commit83305e5338d29087bec81cceed25c6f3b4fb6883 (patch)
treed25bd320c1f61c4ae6b578083b9c9ced7987818e /java/src
parentcc3bdb59015d54285d9aef1169b2fce3c8ae477f (diff)
parenta3efde54d75f05145f1c4a085ef569e7c970fa7f (diff)
downloadlatinime-83305e5338d29087bec81cceed25c6f3b4fb6883.tar.gz
latinime-83305e5338d29087bec81cceed25c6f3b4fb6883.tar.xz
latinime-83305e5338d29087bec81cceed25c6f3b4fb6883.zip
am a3efde54: am 6e979246: am 7712baa5: Merge "Fix a possible IOOB"
* commit 'a3efde54d75f05145f1c4a085ef569e7c970fa7f': Fix a possible IOOB
Diffstat (limited to 'java/src')
-rw-r--r--java/src/com/android/inputmethod/latin/makedict/FusionDictionary.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/makedict/FusionDictionary.java b/java/src/com/android/inputmethod/latin/makedict/FusionDictionary.java
index be653feec..3bb218bea 100644
--- a/java/src/com/android/inputmethod/latin/makedict/FusionDictionary.java
+++ b/java/src/com/android/inputmethod/latin/makedict/FusionDictionary.java
@@ -367,10 +367,11 @@ public final class FusionDictionary implements Iterable<Word> {
* Helper method to convert a String to an int array.
*/
static int[] getCodePoints(final String word) {
- // TODO: this is a copy-paste of the contents of StringUtils.toCodePointArray,
+ // TODO: this is a copy-paste of the old contents of StringUtils.toCodePointArray,
// which is not visible from the makedict package. Factor this code.
+ final int length = word.length();
+ if (length <= 0) return new int[] {};
final char[] characters = word.toCharArray();
- final int length = characters.length;
final int[] codePoints = new int[Character.codePointCount(characters, 0, length)];
int codePoint = Character.codePointAt(characters, 0);
int dsti = 0;