1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

net.http: fix crash on Windows when using Boehm GC (#14351)

This commit is contained in:
Isaiah
2022-05-10 07:00:55 -04:00
committed by GitHub
parent 940c78bdfd
commit 9e09b709e3
3 changed files with 9 additions and 1 deletions

View File

@ -877,7 +877,7 @@ static SECURITY_STATUS https_make_request(TlsContext *tls_ctx, CHAR *req, CHAR *
// increase buffer size if we need
int required_length = *length+(int)pDataBuffer->cbBuffer;
if( required_length > buff_size ) {
CHAR *a = realloc(*out, required_length);
CHAR *a = VSCHANNEL_REALLOC(*out, required_length);
if( a == NULL ) {
scRet = SEC_E_INTERNAL_ERROR;
return scRet;

View File

@ -20,6 +20,10 @@
// Define here to be sure
#define SP_PROT_TLS1_2_CLIENT 0x00000800
#if !defined(VSCHANNEL_REALLOC)
#define VSCHANNEL_REALLOC realloc
#endif
typedef struct TlsContext TlsContext;
TlsContext new_tls_context();