mirror of
https://github.com/curl/curl.git
synced 2024-11-27 05:50:21 +08:00
strerror: Increase STRERROR_LEN 128 -> 256
STRERROR_LEN is the constant used throughout the library to set the size of the buffer on the stack that the curl strerror functions write to. Prior to this change some extended length Windows error messages could be truncated. Closes https://github.com/curl/curl/pull/4920
This commit is contained in:
parent
4d1aa8d43b
commit
1c4fa67e8a
@ -24,7 +24,7 @@
|
||||
|
||||
#include "urldata.h"
|
||||
|
||||
#define STRERROR_LEN 128 /* a suitable length */
|
||||
#define STRERROR_LEN 256 /* a suitable length */
|
||||
|
||||
const char *Curl_strerror(int err, char *buf, size_t buflen);
|
||||
#if defined(WIN32) || defined(_WIN32_WCE)
|
||||
|
Loading…
Reference in New Issue
Block a user