mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 09:38:19 +00:00
Merge remote-tracking branch 'origin/fastpath'
* origin/fastpath: last ssl fixes - missed three more. and more tiny ssl script fixes a few more small fixes for chains containing broken certs. fix expression errors in x509 policy scrips when unparseable data is in certificate chain.
This commit is contained in:
commit
7211d73ee6
11 changed files with 33 additions and 13 deletions
|
@ -86,8 +86,10 @@ STACK_OF(X509)* x509_get_untrusted_stack(VectorVal* certs_vec)
|
|||
{
|
||||
Val *sv = certs_vec->Lookup(i);
|
||||
|
||||
// Fixme: check type
|
||||
if ( ! sv )
|
||||
continue;
|
||||
|
||||
// Fixme: check type
|
||||
X509* x = ((file_analysis::X509Val*) sv)->GetCertificate();
|
||||
if ( ! x )
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue