Merge "Don't try to get entries for uninstalled apps." into mnc-dev

This commit is contained in:
Jason Monk
2015-06-15 15:41:36 +00:00
committed by Android (Google) Code Review

View File

@@ -281,7 +281,9 @@ public class ApplicationsState {
return null;
}
}
entry = getEntryLocked(info);
if (info != null) {
entry = getEntryLocked(info);
}
}
if (DEBUG_LOCKING) Log.v(TAG, "...getEntry releasing lock");
return entry;