diff options
Diffstat (limited to 'agent/stream.c')
-rw-r--r-- | agent/stream.c | 2 |
1 files changed, 2 insertions, 0 deletions
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); |