mirror of
https://github.com/curl/curl.git
synced 2026-07-12 09:47:16 +03: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
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue