CVSROOT: /cvs Module name: src Changes by: [email protected] 2021/04/05 01:02:50
Modified files:
lib/libcrypto/x509: x509_vpm.c
Log message:
Don't leak param->name in x509_verify_param_zero()
For dynamically allocated verify parameters, param->name is only ever set
in X509_VERIFY_set1_name() where the old one is freed and the new one is
assigned via strdup(). Setting it to NULL without freeing it beforehand is
a leak.
looks correct to millert, ok inoguchi
