mirror of
https://github.com/openssl/openssl.git
synced 2024-12-03 05:41:46 +08:00
020d8fc83f
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> |
||
---|---|---|
.. | ||
aes | ||
asn1 | ||
bf | ||
bio | ||
bn | ||
buffer | ||
camellia | ||
cast | ||
cmac | ||
cms | ||
comp | ||
conf | ||
des | ||
dh | ||
dsa | ||
dso | ||
ec | ||
ecdh | ||
ecdsa | ||
engine | ||
err | ||
evp | ||
hmac | ||
idea | ||
include/internal | ||
jpake | ||
lhash | ||
md2 | ||
md4 | ||
md5 | ||
mdc2 | ||
modes | ||
objects | ||
ocsp | ||
pem | ||
perlasm | ||
pkcs7 | ||
pkcs12 | ||
pqueue | ||
rand | ||
rc2 | ||
rc4 | ||
rc5 | ||
ripemd | ||
rsa | ||
seed | ||
sha | ||
srp | ||
stack | ||
store | ||
threads | ||
ts | ||
txt_db | ||
ui | ||
whrlpool | ||
x509 | ||
x509v3 | ||
alphacpuid.pl | ||
arm64cpuid.pl | ||
arm_arch.h | ||
armcap.c | ||
armv4cpuid.pl | ||
c64xpluscpuid.pl | ||
cpt_err.c | ||
cryptlib.c | ||
crypto-lib.com | ||
cversion.c | ||
ebcdic.c | ||
ex_data.c | ||
fips_err.h | ||
fips_ers.c | ||
ia64cpuid.S | ||
install-crypto.com | ||
lock.c | ||
LPdir_nyi.c | ||
LPdir_unix.c | ||
LPdir_vms.c | ||
LPdir_win32.c | ||
LPdir_win.c | ||
LPdir_wince.c | ||
Makefile | ||
mem_clr.c | ||
mem_dbg.c | ||
mem.c | ||
o_dir_test.c | ||
o_dir.c | ||
o_fips.c | ||
o_init.c | ||
o_str.c | ||
o_time.c | ||
opensslconf.h.in | ||
pariscid.pl | ||
ppc_arch.h | ||
ppccap.c | ||
ppccpuid.pl | ||
s390xcap.c | ||
s390xcpuid.S | ||
sec_mem.c | ||
sparc_arch.h | ||
sparccpuid.S | ||
sparcv9cap.c | ||
thr_id.c | ||
uid.c | ||
vms_rms.h | ||
x86_64cpuid.pl | ||
x86cpuid.pl |