diff --git a/lib/dns/dispatch.c b/lib/dns/dispatch.c index 6cd2fd7fe3..2e534d26c3 100644 --- a/lib/dns/dispatch.c +++ b/lib/dns/dispatch.c @@ -1500,8 +1500,14 @@ startrecv(dns_dispatch_t *disp, dispsocket_t *dispsock) { if (disp->recv_pending != 0 && dispsock == NULL) return (ISC_R_SUCCESS); - if (disp->mgr->buffers >= disp->mgr->maxbuffers) - return (ISC_R_NOMEMORY); + if (disp->socktype == isc_sockettype_udp) { + LOCK(&disp->mgr->buffer_lock); + if (disp->mgr->buffers >= disp->mgr->maxbuffers) { + UNLOCK(&disp->mgr->buffer_lock); + return (ISC_R_NOMEMORY); + } + UNLOCK(&disp->mgr->buffer_lock); + } if ((disp->attributes & DNS_DISPATCHATTR_EXCLUSIVE) != 0 && dispsock == NULL)