mirror of
https://github.com/moparisthebest/curl
synced 2024-11-16 06:25:03 -05:00
curl_version: bump string buffer size to 250
With HTTP/3 libs and plenty TLS libs, I manged to hit the limit (which causes a truncated output).
This commit is contained in:
parent
db80de0528
commit
1d85e09ccd
@ -103,7 +103,7 @@ static size_t brotli_version(char *buf, size_t bufsz)
|
||||
char *curl_version(void)
|
||||
{
|
||||
static bool initialized;
|
||||
static char version[200];
|
||||
static char version[250];
|
||||
char *ptr = version;
|
||||
size_t len;
|
||||
size_t left = sizeof(version);
|
||||
|
Loading…
Reference in New Issue
Block a user