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

Commit d9781fe7 authored by Dianne Hackborn's avatar Dianne Hackborn
Browse files

Fix crash.

Change-Id: Id219351625494c54524e400055755d41f3bef868
parent a0b29f55
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4934,7 +4934,7 @@ public final class ActivityManagerService extends ActivityManagerNative
    void grantUriPermissionFromIntentLocked(int callingUid,
            String targetPkg, Intent intent, UriPermissionOwner owner) {
        NeededUriGrants needed = checkGrantUriPermissionFromIntentLocked(callingUid, targetPkg,
                intent, intent.getFlags(), null);
                intent, intent != null ? intent.getFlags() : 0, null);
        if (needed == null) {
            return;
        }