mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 07:38:19 +00:00
Fix dump-events - it cannot be used with ssl anymore, because openssl
does not give the same string results in all versions. Add leak test for x509 verify and fix small leak (type).
This commit is contained in:
parent
4da0718511
commit
3f52eeacda
7 changed files with 827 additions and 598 deletions
|
@ -209,7 +209,7 @@ function x509_verify%(certs: x509_opaque_vector, root_certs: table_string_of_str
|
|||
}
|
||||
|
||||
int num_certs = sk_X509_num(chain);
|
||||
chainVector = new VectorVal(new VectorType(base_type(TYPE_ANY)));
|
||||
chainVector = new VectorVal(internal_type("any_vec")->AsVectorType());
|
||||
|
||||
for ( int i = 0; i < num_certs; i++ )
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue