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

Commit 36e42d77 authored by Varun Shah's avatar Varun Shah Committed by Android (Google) Code Review
Browse files

Merge "Catch ArrayIndexOutOfBoundsException to avoid system reboots." into main

parents a0326897 c27380d5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1754,7 +1754,7 @@ public class SyncStorageEngine {
                    eventType = parser.next();
                } while (eventType != XmlPullParser.END_DOCUMENT);
            }
        } catch (XmlPullParserException e) {
        } catch (XmlPullParserException | ArrayIndexOutOfBoundsException e) {
            Slog.w(TAG, "Error reading accounts", e);
            return;
        } catch (java.io.IOException e) {