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

Commit 6d3cd2e2 authored by Robert Shih's avatar Robert Shih
Browse files

RTSPSource::pause mHandler NULL check

Bug: 23151568
Change-Id: I2dba3e7388b1b84b8b762dbc82c8e5330a158d97
parent 2ca9865e
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -134,8 +134,10 @@ void NuPlayer::RTSPSource::pause() {
            return;
        }
    }
    if (mHandler != NULL) {
        mHandler->pause();
    }
}

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