urldata: remove 'scratch' from the UrlState struct

It is not used anywhere anymore

Follow-up to e3905de819

Closes #14500
This commit is contained in:
Daniel Stenberg 2024-08-12 11:42:48 +02:00
parent 4e51437de2
commit f0a551814b
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
2 changed files with 0 additions and 2 deletions

View file

@ -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) {

View file

@ -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