Skip to content

Commit 74b7243

Browse files
committed
Fix part of nwjs#6135: Crash on OSX with additional_trust_anchors
1 parent 62eda86 commit 74b7243

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/policy_cert_verifier.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ int PolicyCertVerifier::Verify(
8383
completion_callback,
8484
verify_result);
8585

86-
net::CertificateList merged_trust_anchors(params.additional_trust_anchors());
86+
net::CertificateList merged_trust_anchors(*params.additional_trust_anchors());
8787
merged_trust_anchors.insert(merged_trust_anchors.begin(),
8888
trust_anchors_.begin(), trust_anchors_.end());
8989
net::CertVerifier::RequestParams new_params(

0 commit comments

Comments
 (0)