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

Commit b38d85a0 authored by Alex Buynytskyy's avatar Alex Buynytskyy Committed by Automerger Merge Worker
Browse files

Merge "Handle ArrayIndexOutOfBoundsException for install_sessions.xml" into...

Merge "Handle ArrayIndexOutOfBoundsException for install_sessions.xml" into udc-dev am: af7ef7eb am: 8ba3437a

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/23492099



Change-Id: I3808614cd37bb4ada9daea2ea7500774dc040290
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 60907057 8ba3437a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -511,7 +511,7 @@ public class PackageInstallerService extends IPackageInstaller.Stub implements
            }
        } catch (FileNotFoundException e) {
            // Missing sessions are okay, probably first boot
        } catch (IOException | XmlPullParserException e) {
        } catch (IOException | XmlPullParserException | ArrayIndexOutOfBoundsException e) {
            Slog.wtf(TAG, "Failed reading install sessions", e);
        } finally {
            IoUtils.closeQuietly(fis);