Merge "Avoid leaking AssetFileDescriptor."
commit
7a800e7982
|
@ -95,8 +95,16 @@ final class BinaryDictionaryGetter {
|
||||||
+ fallbackResId);
|
+ fallbackResId);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
return AssetFileAddress.makeFromFileNameAndOffset(
|
try {
|
||||||
context.getApplicationInfo().sourceDir, afd.getStartOffset(), afd.getLength());
|
return AssetFileAddress.makeFromFileNameAndOffset(
|
||||||
|
context.getApplicationInfo().sourceDir, afd.getStartOffset(), afd.getLength());
|
||||||
|
} finally {
|
||||||
|
try {
|
||||||
|
afd.close();
|
||||||
|
} catch (IOException e) {
|
||||||
|
// Ignored
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static final class DictPackSettings {
|
private static final class DictPackSettings {
|
||||||
|
|
Loading…
Reference in New Issue