mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Fix an NPE.
Apparently, it is possible that File#getPath() returns null. In this case, we'll have a null AssetFileAddress and an NPE later down the road. Bug: 9944824 Change-Id: Id6ceac1cb55439660f9811cf0fe3b574200d5a20
This commit is contained in:
parent
9b78241dff
commit
673275cbc6
@ -286,7 +286,8 @@ final public class BinaryDictionaryGetter {
|
||||
}
|
||||
if (!dictPackSettings.isWordListActive(wordListId)) continue;
|
||||
if (canUse) {
|
||||
fileList.add(AssetFileAddress.makeFromFileName(f.getPath()));
|
||||
final AssetFileAddress afa = AssetFileAddress.makeFromFileName(f.getPath());
|
||||
if (null != afa) fileList.add(afa);
|
||||
} else {
|
||||
Log.e(TAG, "Found a cached dictionary file but cannot read or use it");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user