Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
savoirfairelinux
jami-daemon
Commits
f07feed9
Commit
f07feed9
authored
Jul 27, 2012
by
Tristan Matthews
Browse files
* #13989: fix segfault on IP2IP offhold
parent
d4e197a3
Changes
1
Hide whitespace changes
Inline
Side-by-side
daemon/src/video/video_rtp_session.cpp
View file @
f07feed9
...
...
@@ -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
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment