BUG/MEDIUM: quic: qc_prep_app_pkts() retries on qc_build_pkt() failures

The "stop_build" label aim is to try to reuse the TX buffer when there is not
enough contiguous room to build a packet. It was defined but not used!
diff --git a/src/xprt_quic.c b/src/xprt_quic.c
index 5bf1b2a..9b2e38c 100644
--- a/src/xprt_quic.c
+++ b/src/xprt_quic.c
@@ -2527,7 +2527,7 @@
 		case -2:
 			goto err;
 		case -1:
-			goto out;
+			goto stop_build;
 		default:
 			break;
 		}