mirror of
https://github.com/curl/curl.git
synced 2026-07-24 07:57:16 +03:00
urldata: remove 'scratch' from the UrlState struct
It is not used anywhere anymore
Follow-up to e3905de819
Closes #14500
This commit is contained in:
parent
4e51437de2
commit
f0a551814b
2 changed files with 0 additions and 2 deletions
|
|
@ -266,7 +266,6 @@ CURLcode Curl_close(struct Curl_easy **datap)
|
|||
/* Close down all open SSL info and sessions */
|
||||
Curl_ssl_close_all(data);
|
||||
Curl_safefree(data->state.first_host);
|
||||
Curl_safefree(data->state.scratch);
|
||||
Curl_ssl_free_certinfo(data);
|
||||
|
||||
if(data->state.referer_alloc) {
|
||||
|
|
|
|||
|
|
@ -1238,7 +1238,6 @@ struct UrlState {
|
|||
struct Curl_ssl_session *session; /* array of 'max_ssl_sessions' size */
|
||||
long sessionage; /* number of the most recent session */
|
||||
int os_errno; /* filled in with errno whenever an error occurs */
|
||||
char *scratch; /* huge buffer[set.buffer_size*2] for upload CRLF replacing */
|
||||
long followlocation; /* redirect counter */
|
||||
int requests; /* request counter: redirects + authentication retakes */
|
||||
#ifdef HAVE_SIGNAL
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue