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

thirdparty/vschannel: fix format string vulnerability (#10944)

This commit is contained in:
Miccah
2021-07-24 15:37:34 -05:00
committed by GitHub
parent 1943da54a5
commit 76904719d0

View File

@ -757,7 +757,7 @@ static SECURITY_STATUS https_make_request(TlsContext *tls_ctx, CHAR *req, CHAR *
// Build HTTP request. Note that I'm assuming that this is less than
// the maximum message size. If it weren't, it would have to be broken up.
sprintf(pbMessage, req);
sprintf(pbMessage, "%s", req);
cbMessage = (DWORD)strlen(pbMessage);