mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
mssdemux: remove unnecessary check
stream->current_fragment has the value of g_list_previous (iter) which has just been checked. No need to check it again. Just to be safe, use a g_assert() to check fragment before dereferencing. CID #1352041
This commit is contained in:
parent
632111ae14
commit
8d445ee758
1 changed files with 2 additions and 2 deletions
|
@ -1149,8 +1149,8 @@ gst_mss_stream_seek (GstMssStream * stream, gboolean forward,
|
|||
} else if (stream->fragment_repetition_index == -1) {
|
||||
if (g_list_previous (iter)) {
|
||||
stream->current_fragment = g_list_previous (iter);
|
||||
fragment =
|
||||
stream->current_fragment ? stream->current_fragment->data : NULL;
|
||||
fragment = stream->current_fragment->data;
|
||||
g_assert (fragment);
|
||||
stream->fragment_repetition_index = fragment->repetitions - 1;
|
||||
} else {
|
||||
stream->fragment_repetition_index = 0;
|
||||
|
|
Loading…
Reference in a new issue