mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-23 17:14:23 +00:00
rtpbin: do not leak encsink pad in error case
https://bugzilla.gnome.org/show_bug.cgi?id=736807
This commit is contained in:
parent
3bf81ad12c
commit
f7ae4288a2
1 changed files with 4 additions and 4 deletions
|
@ -3663,16 +3663,16 @@ create_rtcp (GstRtpBin * rtpbin, GstPadTemplate * templ, const gchar * name)
|
||||||
GstPadLinkReturn ret;
|
GstPadLinkReturn ret;
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (rtpbin, "linking RTCP encoder");
|
GST_DEBUG_OBJECT (rtpbin, "linking RTCP encoder");
|
||||||
ename = g_strdup_printf ("rtcp_sink_%d", sessid);
|
|
||||||
encsink = gst_element_get_static_pad (encoder, ename);
|
|
||||||
g_free (ename);
|
|
||||||
ename = g_strdup_printf ("rtcp_src_%d", sessid);
|
ename = g_strdup_printf ("rtcp_src_%d", sessid);
|
||||||
encsrc = gst_element_get_static_pad (encoder, ename);
|
encsrc = gst_element_get_static_pad (encoder, ename);
|
||||||
g_free (ename);
|
g_free (ename);
|
||||||
|
|
||||||
if (encsrc == NULL)
|
if (encsrc == NULL)
|
||||||
goto enc_src_failed;
|
goto enc_src_failed;
|
||||||
|
|
||||||
|
ename = g_strdup_printf ("rtcp_sink_%d", sessid);
|
||||||
|
encsink = gst_element_get_static_pad (encoder, ename);
|
||||||
|
g_free (ename);
|
||||||
if (encsink == NULL)
|
if (encsink == NULL)
|
||||||
goto enc_sink_failed;
|
goto enc_sink_failed;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue