mirror of
https://github.com/mirror/wget.git
synced 2025-03-26 11:36:30 +08:00
* src/http.c (gethttp): Remove use of alloca
This commit is contained in:
parent
e22dbe5af0
commit
572f6f9b39
@ -3191,7 +3191,7 @@ gethttp (const struct url *u, struct url *original_url, struct http_stat *hs,
|
|||||||
FILE *warc_tmp = NULL;
|
FILE *warc_tmp = NULL;
|
||||||
char warc_timestamp_str [21];
|
char warc_timestamp_str [21];
|
||||||
char warc_request_uuid [48];
|
char warc_request_uuid [48];
|
||||||
ip_address *warc_ip = NULL;
|
ip_address warc_ip_buf, *warc_ip = NULL;
|
||||||
off_t warc_payload_offset = -1;
|
off_t warc_payload_offset = -1;
|
||||||
|
|
||||||
/* Whether this connection will be kept alive after the HTTP request
|
/* Whether this connection will be kept alive after the HTTP request
|
||||||
@ -3309,7 +3309,7 @@ gethttp (const struct url *u, struct url *original_url, struct http_stat *hs,
|
|||||||
|
|
||||||
if (! proxy)
|
if (! proxy)
|
||||||
{
|
{
|
||||||
warc_ip = (ip_address *) alloca (sizeof (ip_address));
|
warc_ip = &warc_ip_buf;
|
||||||
socket_ip_address (sock, warc_ip, ENDPOINT_PEER);
|
socket_ip_address (sock, warc_ip, ENDPOINT_PEER);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user