Fix duplicate entries in ChooserActivity

Fix use of wrong index when checking for duplicates.

Bug 31234526

Change-Id: Ia37d1b04a9054b8d90957057db857633e4b79569
This commit is contained in:
Adam Powell
2016-09-09 10:26:35 -07:00
parent e00fe59837
commit 00e587086b

View File

@@ -1469,7 +1469,7 @@ public class ResolverActivity extends Activity {
boolean found = false;
// Only loop to the end of into as it was before we started; no dupes in from.
for (int j = 0; j < intoCount; j++) {
final ResolvedComponentInfo rci = into.get(i);
final ResolvedComponentInfo rci = into.get(j);
if (isSameResolvedComponent(newInfo, rci)) {
found = true;
rci.add(intent, newInfo);