BUG/MEDIUM: quic: Possible crash with released mux

It is possible the xprt layer have to process retransmitted STREAM frames after
the mux was released. In this case, there is no need to try to wake it up.
diff --git a/src/xprt_quic.c b/src/xprt_quic.c
index 21abd85..c1a7be1 100644
--- a/src/xprt_quic.c
+++ b/src/xprt_quic.c
@@ -1544,7 +1544,7 @@
 		pool_free(pool_head_quic_frame, frm);
 	}
 
-	if (stream_acked) {
+	if (stream_acked && qc->mux_state == QC_MUX_READY) {
 		struct qcc *qcc = qc->qcc;
 
 		if (qcc->subs && qcc->subs->events & SUB_RETRY_SEND) {