mirror of
https://github.com/curl/curl.git
synced 2026-05-05 19:57:28 +03:00
http2: free all header memory after the push callback
This commit is contained in:
parent
e9f0dd43bc
commit
a3a55d80ec
1 changed files with 4 additions and 1 deletions
|
|
@ -296,6 +296,7 @@ static int push_promise(struct SessionHandle *data,
|
|||
struct curl_pushheaders heads;
|
||||
CURLMcode rc;
|
||||
struct http_conn *httpc;
|
||||
size_t i;
|
||||
/* clone the parent */
|
||||
CURL *newhandle = duphandle(data);
|
||||
if(!newhandle) {
|
||||
|
|
@ -315,7 +316,9 @@ static int push_promise(struct SessionHandle *data,
|
|||
stream->push_headers_used, &heads,
|
||||
data->multi->push_userp);
|
||||
|
||||
/* free the headers array again */
|
||||
/* free the headers again */
|
||||
for(i=0; i<stream->push_headers_used; i++)
|
||||
free(stream->push_headers[i]);
|
||||
free(stream->push_headers);
|
||||
stream->push_headers = NULL;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue