Skip to content

Commit

Permalink
エラーをスタックから取り除く
Browse files Browse the repository at this point in the history
  • Loading branch information
melpon committed Sep 19, 2024
1 parent 87b5633 commit 07fc6e7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/ssl_verifier.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ bool SSLVerifier::AddCert(const std::string& pem, X509_STORE* store) {
while (true) {
X509* cert = PEM_read_bio_X509(bio, nullptr, nullptr, nullptr);
if (cert == nullptr) {
ERR_get_error();
break;
}

Expand Down

0 comments on commit 07fc6e7

Please sign in to comment.