From 88514b9c8eaae4dcb31a6c69370ce3e650823d73 Mon Sep 17 00:00:00 2001 From: Karl Heyes Date: Thu, 25 Oct 2007 01:03:47 +0000 Subject: [PATCH] fix minor memory leak on failed shoutcast source auth svn path=/icecast/trunk/icecast/; revision=14044 --- src/connection.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/connection.c b/src/connection.c index cd43164c..7732a8f0 100644 --- a/src/connection.c +++ b/src/connection.c @@ -1214,6 +1214,7 @@ static void _handle_shoutcast_compatible (client_queue_t *node) else INFO1 ("password does not match \"%s\"", client->refbuf->data); client_destroy (client); + free (source_password); free (node); return; }