projects
/
platform
/
upstream
/
gst-plugins-bad.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7f21226
)
srtpdec: fix buffers being dropped due to shadowed variable
author
Tim-Philipp Müller
<tim@centricular.net>
Fri, 16 Aug 2013 18:48:03 +0000
(19:48 +0100)
committer
Tim-Philipp Müller
<tim@centricular.net>
Fri, 16 Aug 2013 18:48:03 +0000
(19:48 +0100)
Spotted by gstblub@gmail.com.
https://bugzilla.gnome.org/show_bug.cgi?id=706091
ext/srtp/gstsrtpdec.c
patch
|
blob
|
history
diff --git
a/ext/srtp/gstsrtpdec.c
b/ext/srtp/gstsrtpdec.c
index 41efb1dde64ffeb2d57d140a990c5faa88e298e4..80ed582a041119e7d9f806e7578951332dc2ff4f 100644
(file)
--- a/
ext/srtp/gstsrtpdec.c
+++ b/
ext/srtp/gstsrtpdec.c
@@
-617,8
+617,7
@@
request_key_with_signal (GstSrtpDec * filter, guint32 ssrc, gint signal)
caps = signal_get_srtp_params (filter, ssrc, signal);
if (caps) {
- GstSrtpDecSsrcStream *stream =
- update_session_stream_from_caps (filter, ssrc, caps);
+ stream = update_session_stream_from_caps (filter, ssrc, caps);
if (stream)
GST_DEBUG_OBJECT (filter, "New stream set with SSRC %d", ssrc);
else