[Spice-devel] [PATCH 1/2] free main channel on shutdown

Christophe Fergeau cfergeau at redhat.com
Tue Aug 9 10:09:37 PDT 2011


If we don't free it, we'll leak the memory that was allocated in
main_channel_init().
---
 server/main_channel.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/server/main_channel.c b/server/main_channel.c
index 1a6a89c..460c21b 100644
--- a/server/main_channel.c
+++ b/server/main_channel.c
@@ -860,6 +860,7 @@ static void main_channel_shutdown(Channel *channel)
     if (main_chan != NULL) {
         main_disconnect(main_chan);
     }
+    free(channel);
 }
 
 static void main_channel_migrate()
-- 
1.7.6



More information about the Spice-devel mailing list