mirror of
https://github.com/curl/curl.git
synced 2026-08-25 12:33:35 +03:00
curl: make the URL indexes 64 bit
Otherwise we could misbehave already at 2 billion URLs and we can't have that. A few of the counters are already correctly using the right type. Closes #18096
This commit is contained in:
parent
d413ed2d40
commit
98bcb885fe
4 changed files with 14 additions and 11 deletions
|
|
@ -88,7 +88,7 @@ struct getout {
|
|||
char *url; /* the URL we deal with */
|
||||
char *outfile; /* where to store the output */
|
||||
char *infile; /* file to upload, if GETOUT_UPLOAD is set */
|
||||
int num; /* which URL number in an invocation */
|
||||
curl_off_t num; /* which URL number in an invocation */
|
||||
|
||||
BIT(outset); /* when outfile is set */
|
||||
BIT(urlset); /* when URL is set */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue