From 7899df370a9395fe016f54a311e58487be04c66c Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Sat, 20 Jan 2007 20:42:27 +0000 Subject: Fix memory leaks --- sdpd/server.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sdpd/server.c') diff --git a/sdpd/server.c b/sdpd/server.c index c5458aac..4316746b 100644 --- a/sdpd/server.c +++ b/sdpd/server.c @@ -211,6 +211,8 @@ static gboolean io_accept_event(GIOChannel *chan, GIOCondition cond, gpointer da g_io_add_watch(io, G_IO_IN, io_session_event, data); + g_io_channel_unref(io); + return TRUE; } -- cgit