Merge "Guard against MountService throwing NPE." into lmp-mr1-dev
This commit is contained in:
@@ -2419,7 +2419,7 @@ class ContextImpl extends Context {
|
|||||||
int res = -1;
|
int res = -1;
|
||||||
try {
|
try {
|
||||||
res = mount.mkdirs(getPackageName(), dir.getAbsolutePath());
|
res = mount.mkdirs(getPackageName(), dir.getAbsolutePath());
|
||||||
} catch (RemoteException e) {
|
} catch (Exception ignored) {
|
||||||
}
|
}
|
||||||
if (res != 0) {
|
if (res != 0) {
|
||||||
Log.w(TAG, "Failed to ensure directory: " + dir);
|
Log.w(TAG, "Failed to ensure directory: " + dir);
|
||||||
|
|||||||
Reference in New Issue
Block a user