From deca8039991886a559b67bcd6701db800a5cf764 Mon Sep 17 00:00:00 2001 From: Stefan Eissing Date: Wed, 6 Mar 2024 09:36:08 +0100 Subject: [PATCH] http2: push headers better cleanup - provide common cleanup method for push headers Closes #13054 Conflict:NA Reference:http://archive.ubuntu.com/ubuntu/pool/main/c/curl/curl_7.81.0-1ubuntu1.16.debian.tar.xz --- lib/http2.c | 32 ++++++++++++++------------------ 1 file changed, 14 insertions(+), 18 deletions(-) diff --git a/lib/http2.c b/lib/http2.c index 6d63f43..f5c6013 100644 --- a/lib/http2.c +++ b/lib/http2.c @@ -547,6 +547,15 @@ static int set_transfer_url(struct Curl_easy *data, return 0; } +static void free_push_headers(struct HTTP *stream) +{ + size_t i; + for(i = 0; ipush_headers_used; i++) + free(stream->push_headers[i]); + Curl_safefree(stream->push_headers); + stream->push_headers_used = 0; +} + static int push_promise(struct Curl_easy *data, struct connectdata *conn, const nghttp2_push_promise *frame) @@ -560,7 +569,6 @@ static int push_promise(struct Curl_easy *data, struct curl_pushheaders heads; CURLMcode rc; struct http_conn *httpc; - size_t i; /* clone the parent */ struct Curl_easy *newhandle = duphandle(data); if(!newhandle) { @@ -596,11 +604,7 @@ static int push_promise(struct Curl_easy *data, Curl_set_in_callback(data, false); /* free the headers again */ - for(i = 0; ipush_headers_used; i++) - free(stream->push_headers[i]); - free(stream->push_headers); - stream->push_headers = NULL; - stream->push_headers_used = 0; + free_push_headers(stream); if(rv) { DEBUGASSERT((rv > CURL_PUSH_OK) && (rv <= CURL_PUSH_ERROROUT)); @@ -1037,10 +1041,10 @@ static int on_header(nghttp2_session *session, const nghttp2_frame *frame, stream->push_headers_alloc) { char **headp; stream->push_headers_alloc *= 2; - headp = Curl_saferealloc(stream->push_headers, - stream->push_headers_alloc * sizeof(char *)); + headp = realloc(stream->push_headers, + stream->push_headers_alloc * sizeof(char *)); if(!headp) { - stream->push_headers = NULL; + free_push_headers(stream); return NGHTTP2_ERR_TEMPORAL_CALLBACK_FAILURE; } stream->push_headers = headp; @@ -1206,15 +1210,7 @@ void Curl_http2_done(struct Curl_easy *data, bool premature) setup */ Curl_dyn_free(&http->header_recvbuf); Curl_dyn_free(&http->trailer_recvbuf); - if(http->push_headers) { - /* if they weren't used and then freed before */ - for(; http->push_headers_used > 0; --http->push_headers_used) { - free(http->push_headers[http->push_headers_used - 1]); - } - free(http->push_headers); - http->push_headers = NULL; - } - + free_push_headers(http); if(!(data->conn->handler->protocol&PROTO_FAMILY_HTTP) || !httpc->h2) /* not HTTP/2 ? */ return; -- 2.33.0