mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-08-01 19:54:40 +02:00
Explicit convert
This commit is contained in:
@@ -41934,7 +41934,7 @@ int wolfSSL_CRYPTO_memcmp(const void *a, const void *b, size_t size)
|
|||||||
{
|
{
|
||||||
if (!a || !b)
|
if (!a || !b)
|
||||||
return 0;
|
return 0;
|
||||||
return ConstantCompare(a, b, size);
|
return ConstantCompare((const byte*)a, (const byte*)b, (int)size);
|
||||||
}
|
}
|
||||||
|
|
||||||
int wolfSSL_sk_X509_num(const WOLF_STACK_OF(WOLFSSL_X509) *s)
|
int wolfSSL_sk_X509_num(const WOLF_STACK_OF(WOLFSSL_X509) *s)
|
||||||
|
Reference in New Issue
Block a user