Fixed CID 576609.

This commit is contained in:
Radim Smat
2021-03-05 12:04:30 +01:00
parent d2b26f66d5
commit 0caed02db7

View File

@ -16113,7 +16113,8 @@ int wolfSSL_set_compression(WOLFSSL* ssl)
} }
if (len < 0) { if (len < 0) {
len = (int)XSTRLEN((const char*)buf); /* The length of the string including terminating null. */
len = (int)XSTRLEN((const char*)buf) + 1;
} }
bio->num = bio->wrSz = len; bio->num = bio->wrSz = len;
bio->ptr = (byte*)XMALLOC(len, 0, DYNAMIC_TYPE_OPENSSL); bio->ptr = (byte*)XMALLOC(len, 0, DYNAMIC_TYPE_OPENSSL);