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

Commit 3f37eb27 authored by Robert Shih's avatar Robert Shih Committed by Android Git Automerger
Browse files

am 11787971: am f33a302f: Merge "RTSPSource::pause mHandler NULL check" into mnc-dr-dev

* commit '11787971':
  RTSPSource::pause mHandler NULL check
parents f87e6ca5 11787971
Loading
Loading
Loading
Loading
+3 −1
Original line number Original line Diff line number Diff line
@@ -134,8 +134,10 @@ void NuPlayer::RTSPSource::pause() {
            return;
            return;
        }
        }
    }
    }
    if (mHandler != NULL) {
        mHandler->pause();
        mHandler->pause();
    }
    }
}


void NuPlayer::RTSPSource::resume() {
void NuPlayer::RTSPSource::resume() {
    if (mHandler != NULL) {
    if (mHandler != NULL) {