MINOR: quic: liberate the TX stream buffer after ACK processing

The sending buffer of each stream is cleared when processing ACKs
corresponding to STREAM emitted frames. If the buffer is empty, free it
and offer it as with other dynamic buffers usage.

This should reduce memory consumption as before an opened stream
confiscate a buffer during its whole lifetime even if there is no more
data to transmit.
diff --git a/src/xprt_quic.c b/src/xprt_quic.c
index a6eda37..3e63187 100644
--- a/src/xprt_quic.c
+++ b/src/xprt_quic.c
@@ -1405,6 +1405,11 @@
 			qcs->tx.ack_offset += diff;
 			b_del(strm->buf, diff);
 			ret = 1;
+
+			if (!b_data(strm->buf)) {
+				b_free(strm->buf);
+				offer_buffers(NULL, 1);
+			}
 		}
 
 		frm_node = eb64_next(frm_node);
@@ -1435,6 +1440,11 @@
 				qcs->tx.ack_offset += diff;
 				b_del(strm->buf, diff);
 				stream_acked = 1;
+
+				if (!b_data(strm->buf)) {
+					b_free(strm->buf);
+					offer_buffers(NULL, 1);
+				}
 			}
 
 			LIST_DELETE(&frm->list);