}/* set the private key */if(!SSL_CTX_use_PrivateKey_file(ssl_ctx, HTTPS_KEYFILE, SSL_FILETYPE_PEM)) { syslog(LOG_ERR,"SSL_CTX_use_PrivateKey_file(%s) failed", HTTPS_KEYFILE); syslogsslerr();return-1; }/* verify private key */if(!SSL_CTX_check_private_key(ssl_ctx)) { s...
This means that PEM_read_bio_X509() has failed (because to get here we know it returned NULL), but there is no error on the error queue. So, if there is any bug here, it is that PEM_read_bio_X509() failed without populating the error queue. Contributor richsalz commented Jun 15,...