MINOR: quic: detect EBADF on sendto()

EBADF can be encountered during process termination after fd listener
has been reset to -1.
diff --git a/src/quic_sock.c b/src/quic_sock.c
index e56372e..1649930 100644
--- a/src/quic_sock.c
+++ b/src/quic_sock.c
@@ -343,7 +343,7 @@
 			/* try again */
 			continue;
 		}
-		else if (ret == 0 || errno == EAGAIN || errno == EWOULDBLOCK || errno == ENOTCONN || errno == EINPROGRESS) {
+		else if (ret == 0 || errno == EAGAIN || errno == EWOULDBLOCK || errno == ENOTCONN || errno == EINPROGRESS || errno == EBADF) {
 			/* TODO must be handle properly. It is justified for UDP ? */
 			qc->sendto_err++;
 			break;