From 920d5bc9225865774954d913685a243fb271521d Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Tue, 8 Jun 2004 14:09:30 +0000 Subject: [PATCH] fix Original commit message from CVS: fix --- gst/tcp/gsttcpserversink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/tcp/gsttcpserversink.c b/gst/tcp/gsttcpserversink.c index d9201862cf..42780a1ac4 100644 --- a/gst/tcp/gsttcpserversink.c +++ b/gst/tcp/gsttcpserversink.c @@ -629,7 +629,7 @@ gst_tcpserversink_close (GstTCPServerSink * this) if (this->streamheader) { GList *l; - for (l = sink->streamheader; l; l = l->next) { + for (l = this->streamheader; l; l = l->next) { gst_buffer_unref (l->data); } g_list_free (this->streamheader);