BUG/MAJOR: h2: set the connection's task to NULL when no client timeout is set

If "timeout client" is missing from the frontend, the task is not initialized,
causing a crash on connection teardown.
diff --git a/src/mux_h2.c b/src/mux_h2.c
index 2fffcde..ed4027c 100644
--- a/src/mux_h2.c
+++ b/src/mux_h2.c
@@ -329,6 +329,7 @@
 
 
 	h2c->timeout = sess->fe->timeout.client;
+	h2c->task = NULL;
 	if (tick_isset(h2c->timeout)) {
 		t = task_new(tid_bit);
 		if (!t)