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

_______________________________________________
Spice-devel mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/spice-devel

Reply via email to