From 8036518fa407328b25dd606a5f59bfc14b53799a Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Sat, 26 Nov 2011 12:18:57 -0800 Subject: [PATCH] Fixed double free (free'd wrong pointer) --- src/daemon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/daemon.c b/src/daemon.c index 4fec767..2d245da 100644 --- a/src/daemon.c +++ b/src/daemon.c @@ -154,7 +154,7 @@ void* start_client_thread(void* data) { /* Load and init client */ client = guac_client_plugin_get_client(plugin, socket, connect->argc, connect->argv); - guac_instruction_free(select); + guac_instruction_free(connect); if (client == NULL) { -- 1.7.10.4