Merge "Fix for too many binder calls in packagemanager"

This commit is contained in:
Dianne Hackborn
2012-04-20 18:34:52 -07:00
committed by android code review

View File

@@ -2573,7 +2573,7 @@ public class PackageManagerService extends IPackageManager.Stub {
}
}
if (pi != null && !list.append(pi)) {
if (pi != null && list.append(pi)) {
break;
}
}
@@ -2620,7 +2620,7 @@ public class PackageManagerService extends IPackageManager.Stub {
}
}
if (ai != null && !list.append(ai)) {
if (ai != null && list.append(ai)) {
break;
}
}