MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

boringssl load_system_certs patch

+2 -2
+2 -2
vendor/packagefiles/tlsuv/src/boringssl/engine.c
··· 262 262 SSL_CTX_set0_verify_cert_store(ctx, store); 263 263 } else { 264 264 #if _WIN32 265 - if (!SSL_CTX_load_verify_store(ctx, "org.openssl.winstore:")) { 266 - X509_STORE *sys_ca = load_system_certs(); 265 + X509_STORE *sys_ca = load_system_certs(); 266 + if (sys_ca != NULL) { 267 267 SSL_CTX_set0_verify_cert_store(ctx, sys_ca); 268 268 } 269 269 #elif __APPLE__