From: Joe Orton Date: Wed, 3 Jun 2026 10:44:38 +0000 (+0000) Subject: Merge r1934918 from trunk: X-Git-Tag: 2.4.68-rc1-candidate~23 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=32b7e2e66477020ba75b78ab43fb8890ec292ad2;p=thirdparty%2Fapache%2Fhttpd.git Merge r1934918 from trunk: * modules/ssl/ssl_util_ocsp.c (send_request): Increase wbuf with the len read by apr_socket_send Submitted by: gbechis Github: closes #603 Reviewed by: covener, jorton, jfclere git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1934919 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/ssl_util_ocsp.c b/modules/ssl/ssl_util_ocsp.c index a202a72ee1..9dd12cfe9c 100644 --- a/modules/ssl/ssl_util_ocsp.c +++ b/modules/ssl/ssl_util_ocsp.c @@ -133,7 +133,7 @@ static apr_socket_t *send_request(BIO *request, const apr_uri_t *uri, apr_size_t wlen = remain; rv = apr_socket_send(sd, wbuf, &wlen); - wbuf += remain; + wbuf += wlen; remain -= wlen; } while (rv == APR_SUCCESS && remain > 0);