From 30abe66912963e121b6b44168e962ecaef7da83c Mon Sep 17 00:00:00 2001 From: Youness Alaoui Date: Mon, 4 Feb 2013 23:15:00 -0500 Subject: Adding new SDP parsing and generation API. This adds nice_agent_set_stream_name, nice_agent_get_stream_name, nice_agent_generate_local_sdp, nice_agent_parse_remote_sdp. --- agent/stream.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'agent/stream.c') diff --git a/agent/stream.c b/agent/stream.c index 1276ae2..870cdda 100644 --- a/agent/stream.c +++ b/agent/stream.c @@ -71,6 +71,8 @@ stream_free (Stream *stream) { GSList *i; + if (stream->name) + g_free (stream->name); for (i = stream->components; i; i = i->next) { Component *component = i->data; component_free (component); -- cgit v1.2.1