Merge "Fix an NPE."

main
Jean Chalard 2013-09-18 12:42:15 +00:00 committed by Android (Google) Code Review
commit 8678062853
1 changed files with 2 additions and 1 deletions

View File

@ -286,7 +286,8 @@ final public class BinaryDictionaryGetter {
} }
if (!dictPackSettings.isWordListActive(wordListId)) continue; if (!dictPackSettings.isWordListActive(wordListId)) continue;
if (canUse) { if (canUse) {
fileList.add(AssetFileAddress.makeFromFileName(f.getPath())); final AssetFileAddress afa = AssetFileAddress.makeFromFileName(f.getPath());
if (null != afa) fileList.add(afa);
} else { } else {
Log.e(TAG, "Found a cached dictionary file but cannot read or use it"); Log.e(TAG, "Found a cached dictionary file but cannot read or use it");
} }