mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
media: don't leak the destination address
This commit is contained in:
parent
9bed89c3b7
commit
1340e21239
1 changed files with 8 additions and 5 deletions
|
@ -713,18 +713,19 @@ find_transport (GstRTSPMediaStream *stream, const gchar *rtcp_from)
|
||||||
{
|
{
|
||||||
GList *walk;
|
GList *walk;
|
||||||
GstRTSPMediaTrans *result = NULL;
|
GstRTSPMediaTrans *result = NULL;
|
||||||
const gchar *dest;
|
const gchar *tmp;
|
||||||
|
gchar *dest;
|
||||||
guint port;
|
guint port;
|
||||||
|
|
||||||
if (rtcp_from == NULL)
|
if (rtcp_from == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
dest = g_strrstr (rtcp_from, ":");
|
tmp = g_strrstr (rtcp_from, ":");
|
||||||
if (dest == NULL)
|
if (tmp == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
port = atoi (dest + 1);
|
port = atoi (tmp + 1);
|
||||||
dest = g_strndup (rtcp_from, dest - rtcp_from);
|
dest = g_strndup (rtcp_from, tmp - rtcp_from);
|
||||||
|
|
||||||
g_message ("finding %s:%d", dest, port);
|
g_message ("finding %s:%d", dest, port);
|
||||||
|
|
||||||
|
@ -740,6 +741,8 @@ find_transport (GstRTSPMediaStream *stream, const gchar *rtcp_from)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
g_free (dest);
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue