Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cd79e5e1 authored by Jeff Hamilton's avatar Jeff Hamilton Committed by Android Git Automerger
Browse files

am b5c05516: Merge change I3b7d5cbe into eclair

Merge commit 'b5c05516' into eclair-mr2

* commit 'b5c05516':
  Copy the selection args when creating a CPO since callers often reuse the passed in array.
parents 574b99bf b5c05516
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -545,7 +545,8 @@ public class ContentProviderOperation implements Parcelable {
                        "only updates, deletes, and asserts can have selections");
            }
            mSelection = selection;
            mSelectionArgs = selectionArgs;
            mSelectionArgs = new String[selectionArgs.length];
            System.arraycopy(selectionArgs, 0, mSelectionArgs, 0, selectionArgs.length);
            return this;
        }