mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
HTTP: Fix mem leak of OSSL_HTTP_REQ_CTX_transfer(), rename to ossl_http_req_ctx_transfer()
Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14678)
This commit is contained in:
parent
1c8505fb7d
commit
6466cc97e8
@ -747,7 +747,7 @@ static ASN1_VALUE *BIO_mem_d2i(BIO *mem, const ASN1_ITEM *it)
|
||||
return resp;
|
||||
}
|
||||
|
||||
static BIO *OSSL_HTTP_REQ_CTX_transfer(OSSL_HTTP_REQ_CTX *rctx)
|
||||
static BIO *ossl_http_req_ctx_transfer(OSSL_HTTP_REQ_CTX *rctx)
|
||||
{
|
||||
int sending = 1;
|
||||
int rv;
|
||||
@ -777,8 +777,6 @@ static BIO *OSSL_HTTP_REQ_CTX_transfer(OSSL_HTTP_REQ_CTX *rctx)
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
if (!BIO_up_ref(rctx->mem))
|
||||
return NULL;
|
||||
return rctx->mem;
|
||||
}
|
||||
|
||||
@ -790,7 +788,7 @@ ASN1_VALUE *OSSL_HTTP_REQ_CTX_sendreq_d2i(OSSL_HTTP_REQ_CTX *rctx,
|
||||
ERR_raise(ERR_LIB_HTTP, ERR_R_PASSED_NULL_PARAMETER);
|
||||
return NULL;
|
||||
}
|
||||
return BIO_mem_d2i(OSSL_HTTP_REQ_CTX_transfer(rctx), it);
|
||||
return BIO_mem_d2i(ossl_http_req_ctx_transfer(rctx), it);
|
||||
}
|
||||
|
||||
static int update_timeout(int timeout, time_t start_time)
|
||||
@ -902,7 +900,7 @@ BIO *OSSL_HTTP_transfer(const char *server, const char *port, const char *path,
|
||||
if (rctx == NULL)
|
||||
goto end;
|
||||
|
||||
resp = OSSL_HTTP_REQ_CTX_transfer(rctx);
|
||||
resp = ossl_http_req_ctx_transfer(rctx);
|
||||
if (resp == NULL) {
|
||||
if (rctx->redirection_url != NULL) {
|
||||
if (redirection_url == NULL)
|
||||
@ -937,14 +935,14 @@ BIO *OSSL_HTTP_transfer(const char *server, const char *port, const char *path,
|
||||
}
|
||||
}
|
||||
}
|
||||
OSSL_HTTP_REQ_CTX_free(rctx);
|
||||
|
||||
/* callback can be used to clean up TLS session */
|
||||
if (bio_update_fn != NULL
|
||||
&& (*bio_update_fn)(cbio, arg, 0, resp != NULL) == NULL) {
|
||||
BIO_free(resp);
|
||||
&& (*bio_update_fn)(cbio, arg, 0, resp != NULL) == NULL)
|
||||
resp = NULL;
|
||||
}
|
||||
|
||||
if (resp != NULL && !BIO_up_ref(resp))
|
||||
resp = NULL;
|
||||
OSSL_HTTP_REQ_CTX_free(rctx);
|
||||
|
||||
end:
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user