* #13989: fix segfault on IP2IP offhold

This commit is contained in:
Tristan Matthews
2012-07-27 17:31:07 -04:00
parent d4e197a304
commit f07feed9ab

View File

@ -145,7 +145,10 @@ void VideoRtpSession::stop()
void VideoRtpSession::forceKeyFrame()
{
sendThread_->forceKeyFrame();
if (sendThread_.get())
sendThread_->forceKeyFrame();
else
ERROR("Video sending thread is NULL");
}
} // end namespace sfl_video