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:
Daniel Stenberg 2025-07-30 11:20:45 +02:00
parent d413ed2d40
commit 98bcb885fe
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
4 changed files with 14 additions and 11 deletions

View file

@ -1250,7 +1250,7 @@ static CURLcode single_transfer(struct OperationConfig *config,
}
per->config = config;
per->curl = curl;
per->urlnum = (unsigned int)u->num;
per->urlnum = u->num;
/* default headers output stream is stdout */
heads = &per->heads;