am 2b46774f: Merge "Guard against MountService throwing NPE." into lmp-mr1-dev

automerge: 0cb736f

* commit '0cb736f754d8f487ebe4c8cc670e5dd2589eaea1':
  Guard against MountService throwing NPE.
This commit is contained in:
Jeff Sharkey
2015-01-09 19:24:31 +00:00
committed by android-build-merger

View File

@@ -2419,7 +2419,7 @@ class ContextImpl extends Context {
int res = -1;
try {
res = mount.mkdirs(getPackageName(), dir.getAbsolutePath());
} catch (RemoteException e) {
} catch (Exception ignored) {
}
if (res != 0) {
Log.w(TAG, "Failed to ensure directory: " + dir);