Fix crash due to modifying immutable PersistableBundle
Bug: 185261314
Test: make
Change-Id: Ibe6ead59b647b0983516e648d2848e2daa56bf31
Merged-In: Ibe6ead59b647b0983516e648d2848e2daa56bf31
diff --git a/src/com/android/providers/telephony/TelephonyProvider.java b/src/com/android/providers/telephony/TelephonyProvider.java
index 5382363..1d72a28 100644
--- a/src/com/android/providers/telephony/TelephonyProvider.java
+++ b/src/com/android/providers/telephony/TelephonyProvider.java
@@ -3218,10 +3218,11 @@
selection,
selectionArgs,
ORDER_BY_SUB_ID)) {
- findAndRestoreAllMatches(bundle, cursor, restoreCase);
+ findAndRestoreAllMatches(bundle.deepCopy(), cursor, restoreCase);
}
}
+ // backedUpDataBundle must to be mutable
private void findAndRestoreAllMatches(PersistableBundle backedUpDataBundle, Cursor cursor,
int restoreCase) {
int[] previouslyRestoredSubIdsArray =