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

Commit a420cc46 authored by Irfan Sheriff's avatar Irfan Sheriff Committed by Android (Google) Code Review
Browse files

Merge "Fix system crash on p2p failure"

parents 511f8e2f f0ef26af
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -1211,6 +1211,11 @@ public class WifiP2pService extends IWifiP2pManager.Stub {
        mReplyChannel.replyToMessage(msg, what);
    }

    private void replyToMessage(Message msg, int what, int arg1) {
        if (msg.replyTo == null) return;
        mReplyChannel.replyToMessage(msg, what, arg1);
    }

    private void replyToMessage(Message msg, int what, Object obj) {
        if (msg.replyTo == null) return;
        mReplyChannel.replyToMessage(msg, what, obj);