mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-31 11:32:38 +00:00
srtp: remove dead assignment
Coverity 1197707
This commit is contained in:
parent
8f4123a881
commit
54704b6f5d
1 changed files with 1 additions and 1 deletions
|
@ -988,7 +988,7 @@ unprotect:
|
|||
GST_OBJECT_LOCK (filter);
|
||||
|
||||
/* Update stream */
|
||||
if ((stream = find_stream_by_ssrc (filter, ssrc))) {
|
||||
if (find_stream_by_ssrc (filter, ssrc)) {
|
||||
GST_OBJECT_UNLOCK (filter);
|
||||
if (request_key_with_signal (filter, ssrc, SIGNAL_HARD_LIMIT)) {
|
||||
GST_OBJECT_LOCK (filter);
|
||||
|
|
Loading…
Reference in a new issue