From b9f6ca1d3202ce36deea416d1f17bb6537f03600 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 1 Aug 2014 00:01:02 +0200 Subject: [PATCH] openssl: make ossl_send return CURLE_OK better Previously it only returned a CURLcode for errors, which is when it returns a different size than what was passed in to it. The http2 code only checked the curlcode and thus failed. --- lib/vtls/openssl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c index 844b6e113..2ff425e0d 100644 --- a/lib/vtls/openssl.c +++ b/lib/vtls/openssl.c @@ -2752,6 +2752,7 @@ static ssize_t ossl_send(struct connectdata *conn, *curlcode = CURLE_SEND_ERROR; return -1; } + *curlcode = CURLE_OK; return (ssize_t)rc; /* number of bytes */ }