MINOR: connection: remove unneeded memset 0 for idle conns

Remove the zeroing of an idle connection node on remove from a tree.
This is not needed and should improve slightly the performance of idle
connection usage. Besides, it breaks the memory poisoning feature.
diff --git a/src/connection.c b/src/connection.c
index f8b704b..24fa069 100644
--- a/src/connection.c
+++ b/src/connection.c
@@ -54,7 +54,6 @@
 void conn_delete_from_tree(struct ebmb_node *node)
 {
 	ebmb_delete(node);
-	memset(node, 0, sizeof(*node));
 }
 
 int conn_create_mux(struct connection *conn)