CVSROOT: /cvs Module name: src Changes by: [email protected] 2020/09/20 13:13:06
Modified files:
lib/libcrypto/x509: x509_constraints.c
Log message:
Avoid memleak caused by shadowing
The outer scope in x509_constraints_extract_names() contains a vname
variable which will be freed on error, but an inner scope contains
another vname that won't be freed, e.g., if x509_constraints_names_add
fails.
Found by llvm scan-build.
ok beck
