forked from wolfSSL/wolfssl
Fixed casting issue
This commit is contained in:
@ -5500,8 +5500,8 @@ static void test_wolfSSL_PKCS12(void)
|
|||||||
bytes = (int)XFREAD(buffer, 1, sizeof(buffer), f);
|
bytes = (int)XFREAD(buffer, 1, sizeof(buffer), f);
|
||||||
XFCLOSE(f);
|
XFCLOSE(f);
|
||||||
|
|
||||||
goodPswLen = XSTRLEN(goodPsw);
|
goodPswLen = (int)XSTRLEN(goodPsw);
|
||||||
badPswLen = XSTRLEN(badPsw);
|
badPswLen = (int)XSTRLEN(badPsw);
|
||||||
|
|
||||||
bio = BIO_new_mem_buf((void*)buffer, bytes);
|
bio = BIO_new_mem_buf((void*)buffer, bytes);
|
||||||
AssertNotNull(bio);
|
AssertNotNull(bio);
|
||||||
|
Reference in New Issue
Block a user