CVSROOT: /cvs Module name: src Changes by: [email protected] 2019/04/13 12:04:05
Modified files:
lib/libssl : ssl_cert.c
Log message:
Avoid leak in SSL_dup_CA_list()
In the case that X509_NAME_dup() succeeds, but sk_X509_NAME_push()
fails, name is leaked. The entire function is trying to be clever
and therefore hard to follow. Let's do it the stupid but safe way.
ok jsing
