srtp: remove dead assignment

Coverity 1197707
This commit is contained in:
Vincent Penquerc'h 2014-04-09 16:55:30 +01:00
parent 8f4123a881
commit 54704b6f5d

View file

@ -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);