From 32b7e2e66477020ba75b78ab43fb8890ec292ad2 Mon Sep 17 00:00:00 2001
From: Joe Orton <jorton@apache.org>
Date: Wed, 3 Jun 2026 10:44:38 +0000
Subject: [PATCH] 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
Conflict:no
Reference:https://github.com/apache/httpd/commit/32b7e2e66477020ba75b78ab43fb8890ec292ad2
modules/ssl/ssl_util_ocsp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
@@ -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);