Skip to content

Commit ac2b059

Browse files
AdamMajeritaloacasas
authored andcommittedJan 30, 2017
crypto: do not use pointers to std::vector
The pointer to std::vector is unnecessary, so replace it with standard instance. Also, make the for() loop more readable by using actual type instead of inferred - there is no readability benefit here from obfuscating the type. PR-URL: #8334 Reviewed-By: Sam Roberts <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Fedor Indutny <[email protected]>
1 parent e161dcf commit ac2b059

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed
 

‎src/node_crypto.cc

+4-6
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ const char* const root_certs[] = {
123123
std::string extra_root_certs_file; // NOLINT(runtime/string)
124124

125125
X509_STORE* root_cert_store;
126-
std::vector<X509*>* root_certs_vector;
126+
std::vector<X509*> root_certs_vector;
127127

128128
// Just to generate static methods
129129
template class SSLWrap<TLSWrap>;
@@ -693,9 +693,7 @@ static int X509_up_ref(X509* cert) {
693693

694694

695695
static X509_STORE* NewRootCertStore() {
696-
if (!root_certs_vector) {
697-
root_certs_vector = new std::vector<X509*>;
698-
696+
if (root_certs_vector.empty()) {
699697
for (size_t i = 0; i < arraysize(root_certs); i++) {
700698
BIO* bp = NodeBIO::NewFixed(root_certs[i], strlen(root_certs[i]));
701699
X509 *x509 = PEM_read_bio_X509(bp, nullptr, CryptoPemCallback, nullptr);
@@ -704,12 +702,12 @@ static X509_STORE* NewRootCertStore() {
704702
// Parse errors from the built-in roots are fatal.
705703
CHECK_NE(x509, nullptr);
706704

707-
root_certs_vector->push_back(x509);
705+
root_certs_vector.push_back(x509);
708706
}
709707
}
710708

711709
X509_STORE* store = X509_STORE_new();
712-
for (auto& cert : *root_certs_vector) {
710+
for (X509 *cert : root_certs_vector) {
713711
X509_up_ref(cert);
714712
X509_STORE_add_cert(store, cert);
715713
}

0 commit comments

Comments
 (0)
Please sign in to comment.