Fix a crash in the dictionary due to releasing a null array.
parent
1b62ff1a3d
commit
df4e0430de
|
@ -107,7 +107,9 @@ static int latinime_BinaryDictionary_getSuggestions(
|
|||
env->ReleaseIntArrayElements(frequencyArray, frequencies, 0);
|
||||
env->ReleaseIntArrayElements(inputArray, inputCodes, JNI_ABORT);
|
||||
env->ReleaseCharArrayElements(outputArray, outputChars, 0);
|
||||
if (nextLetters) {
|
||||
env->ReleaseIntArrayElements(nextLettersArray, nextLetters, 0);
|
||||
}
|
||||
|
||||
return count;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue