summaryrefslogtreecommitdiffstats
path: root/test/recipes/40-test_rehash.t
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-09-16 10:47:15 +0100
committerMatt Caswell <matt@openssl.org>2015-09-17 22:29:08 +0100
commit020d8fc83fe1a94232db1ee1166309e2458a8a18 (patch)
tree808981aee3ae790284dd9f933066ade0017ea67d /test/recipes/40-test_rehash.t
parentb785504a10310cb2872270eb409b70971be5e76e (diff)
Make sure OPENSSL_cleanse checks for NULL
In master we have the function OPENSSL_clear_free(x,y), which immediately returns if x == NULL. In <=1.0.2 this function does not exist so we have to do: OPENSSL_cleanse(x, y); OPENSSL_free(x); However, previously, OPENSSL_cleanse did not check that if x == NULL, so the real equivalent check would have to be: if (x != NULL) OPENSSL_cleanse(x, y); OPENSSL_free(x); It would be easy to get this wrong during cherry-picking to other branches and therefore, for safety, it is best to just ensure OPENSSL_cleanse also checks for NULL. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'test/recipes/40-test_rehash.t')
0 files changed, 0 insertions, 0 deletions