Merge "Avoid NPE in app storage page" into qt-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
35efae7822
@@ -421,6 +421,10 @@ public class AppStorageSettings extends AppInfoWithHeader
|
|||||||
for (GrantedUriPermission perm : perms) {
|
for (GrantedUriPermission perm : perms) {
|
||||||
String authority = perm.uri.getAuthority();
|
String authority = perm.uri.getAuthority();
|
||||||
ProviderInfo provider = pm.resolveContentProvider(authority, 0);
|
ProviderInfo provider = pm.resolveContentProvider(authority, 0);
|
||||||
|
if (provider == null) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
CharSequence app = provider.applicationInfo.loadLabel(pm);
|
CharSequence app = provider.applicationInfo.loadLabel(pm);
|
||||||
MutableInt count = uriCounters.get(app);
|
MutableInt count = uriCounters.get(app);
|
||||||
if (count == null) {
|
if (count == null) {
|
||||||
|
Reference in New Issue
Block a user