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

Commit a8b42780 authored by Jeff Sharkey's avatar Jeff Sharkey
Browse files

Ignore null actions.

Bug: 26862905
Change-Id: I30a21e67b0f60ebca5eaccc843834059e52a6b78
parent 634dc42c
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -8923,7 +8923,8 @@ public class Intent implements Parcelable, Cloneable {
            mClipData.prepareToLeaveProcess(leavingPackage);
        }

        if (mData != null && StrictMode.vmFileUriExposureEnabled() && leavingPackage) {
        if (mAction != null && mData != null && StrictMode.vmFileUriExposureEnabled()
                && leavingPackage) {
            switch (mAction) {
                case ACTION_MEDIA_REMOVED:
                case ACTION_MEDIA_UNMOUNTED: