From: Olivier Houchard Date: Sun, 5 Jan 2020 15:45:14 +0000 (+0100) Subject: MINOR: ssl: Remove unused variable "need_out". X-Git-Tag: v2.2-dev1~137 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7f4f7f140f6b03b61d1b38260962db235c42c121;p=thirdparty%2Fhaproxy.git MINOR: ssl: Remove unused variable "need_out". The "need_out" variable was used to let the ssl code know we're done reading early data, and we should start the handshake. Now that the handshake function is responsible for taking care of reading early data, all that logic has been removed from ssl_sock_to_buf(), but need_out was forgotten, and left. Remove it know. This patch was submitted by William Dauchy , and should fix github issue #434. This should be backported to 2.0 and 2.1. --- diff --git a/src/ssl_sock.c b/src/ssl_sock.c index e4dd913a4c..124b2c602a 100644 --- a/src/ssl_sock.c +++ b/src/ssl_sock.c @@ -6537,7 +6537,6 @@ static size_t ssl_sock_to_buf(struct connection *conn, void *xprt_ctx, struct bu * EINTR too. */ while (count > 0) { - int need_out = 0; try = b_contig_space(buf); if (!try) @@ -6595,8 +6594,6 @@ static size_t ssl_sock_to_buf(struct connection *conn, void *xprt_ctx, struct bu /* otherwise it's a real error */ goto out_error; } - if (need_out) - break; } leave: return done;