From: Joe Orton Date: Wed, 3 Jun 2026 10:43:09 +0000 (+0000) Subject: * modules/ssl/ssl_util_ocsp.c (send_request): Increase wbuf with the X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=2c5ee792f5d37d951b86c24db37035705a1b0c46;p=thirdparty%2Fapache%2Fhttpd.git * modules/ssl/ssl_util_ocsp.c (send_request): Increase wbuf with the len read by apr_socket_send Submitted by: gbechis Github: closes #603 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1934918 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/ssl_util_ocsp.c b/modules/ssl/ssl_util_ocsp.c index 855f02fc21..b30b09d91d 100644 --- a/modules/ssl/ssl_util_ocsp.c +++ b/modules/ssl/ssl_util_ocsp.c @@ -136,7 +136,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);