Merge pull request #2994 from JacobBarthelmeh/Xilinx

add additional sanity check on pointer before free
This commit is contained in:
toddouska 2020-05-26 16:18:58 -07:00 committed by GitHub
commit c5ebf23c25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1847,11 +1847,15 @@ static int wc_RsaFunctionSync(const byte* in, word32 inLen, byte* out,
}
if (ret == 0) {
if (XSecure_RsaPrivateDecrypt(&rsa, (u8*)in, inLen, out) != XST_SUCCESS) {
if (XSecure_RsaPrivateDecrypt(&rsa, (u8*)in, inLen, out) !=
XST_SUCCESS) {
ret = BAD_STATE_E;
}
}
XFREE(d, key->heap, DYNAMIC_TYPE_PRIVATE_KEY);
if (d != NULL) {
XFREE(d, key->heap, DYNAMIC_TYPE_PRIVATE_KEY);
}
}
#endif
break;