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

Commit fac2141f authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fixed NPE when cancellation signal is null." into oc-mr1-dev

parents 54ff7e75 ec63b7d0
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -562,7 +562,10 @@ final class RemoteFillService implements DeathRecipient {
        void onTimeout(RemoteFillService remoteService) {
            // NOTE: Must make these 2 calls asynchronously, because the cancellation signal is
            // handled by the service, which could block.
            remoteService.dispatchOnFillTimeout(mCancellation);
            final ICancellationSignal cancellation = mCancellation;
            if (cancellation != null) {
                remoteService.dispatchOnFillTimeout(cancellation);
            }
            remoteService.dispatchOnFillRequestFailure(PendingFillRequest.this, null);
        }