From 70bfc1c0bfff2fa2bde109c9978cf2d0ec6452f0 Mon Sep 17 00:00:00 2001 From: Yann Ylavic Date: Thu, 2 Nov 2017 22:19:23 +0000 Subject: [PATCH] ab: follow up to r1811664. apr_socket_send() can return both an error and data, account for data in the latter case (i.e. let next call fail, if any). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1814118 13f79535-47bb-0310-9956-ffa450edef68 --- support/ab.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/support/ab.c b/support/ab.c index 89310a0df8..38ebb3dcc2 100644 --- a/support/ab.c +++ b/support/ab.c @@ -845,23 +845,21 @@ static void write_request(struct connection * c) return; } l = e; - e = APR_SUCCESS; } else #endif { e = apr_socket_send(c->aprsock, request + c->rwrote, &l); - if (e != APR_SUCCESS) { + if (e != APR_SUCCESS && !l) { if (!APR_STATUS_IS_EAGAIN(e)) { epipe++; printf("Send request failed!\n"); close_connection(c); - return; } - if (!l) { + else { set_polled_events(c, APR_POLLOUT); - return; } + return; } } totalposted += l; -- 2.50.1