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

Commit 27a108cf authored by Jeff Sharkey's avatar Jeff Sharkey
Browse files

Oops, need to return on success.

Otherwise we fall through to throw.

Test: builds, boots
Bug: 69948475
Change-Id: I8e0543455649861611adae15ed1692bf79c94abe
parent 241d9878
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2611,6 +2611,7 @@ class StorageManagerService extends IStorageManager.Stub implements Watchdog.Mon

            try {
                mVold.mkdirs(appPath);
                return;
            } catch (Exception e) {
                throw new IllegalStateException("Failed to prepare " + appPath + ": " + e);
            }