BUG/MEDIUM: muxes: Use the right argument when calling the destroy method.

When calling the mux "destroy" method, the argument should be the mux
context, not the connection. In a few instances in the mux code, the
connection was used (mainly when the session wouldn't handle the idle
connection, and the server pool was fool), and that could lead to random
segfaults.

This should be backported to 2.1, 2.0, and 1.9
diff --git a/src/mux_fcgi.c b/src/mux_fcgi.c
index 3fb85b5..38c2bfd 100644
--- a/src/mux_fcgi.c
+++ b/src/mux_fcgi.c
@@ -3468,7 +3468,7 @@
 				if (eb_is_empty(&fconn->streams_by_id)) {
 					if (!srv_add_to_idle_list(objt_server(fconn->conn->target), fconn->conn)) {
 						/* The server doesn't want it, let's kill the connection right away */
-						fconn->conn->mux->destroy(fconn->conn);
+						fconn->conn->mux->destroy(fconn);
 						TRACE_DEVEL("outgoing connection killed", FCGI_EV_STRM_END|FCGI_EV_FCONN_ERR);
 					}
 					TRACE_DEVEL("reusable idle connection", FCGI_EV_STRM_END, fconn->conn);