From: Daniel Stenberg Date: Mon, 24 Sep 2018 12:05:24 +0000 (+0200) Subject: Curl_retry_request: fix memory leak X-Git-Tag: curl-7_62_0~139 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ef695fc30144c8b92700c0161cdafd141c70ae60;p=thirdparty%2Fcurl.git Curl_retry_request: fix memory leak Detected by OSS-Fuzz Bug: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=10648 Closes #3042 --- diff --git a/lib/transfer.c b/lib/transfer.c index 6a80bf31a3..efd929279c 100644 --- a/lib/transfer.c +++ b/lib/transfer.c @@ -1705,8 +1705,13 @@ CURLcode Curl_retry_request(struct connectdata *conn, if(conn->handler->protocol&PROTO_FAMILY_HTTP) { struct HTTP *http = data->req.protop; - if(http->writebytecount) - return Curl_readrewind(conn); + if(http->writebytecount) { + CURLcode result = Curl_readrewind(conn); + if(result) { + Curl_safefree(*url); + return result; + } + } } } return CURLE_OK;