fix for android build

oxigraph-main
Niko PLP 1 year ago
parent 4de4c7d0d6
commit 56e77c4c66
  1. 4
      plugin/openssl/openssl_provider.cc

@ -119,7 +119,9 @@ OpensslCipherStream::~OpensslCipherStream() {
}
Status OpensslCipherStream::handleErrors(const char * str) {
# ifndef OPENSSL_NO_STDIO
ERR_print_errors_fp(stderr);
# endif
if (ctx_ != nullptr) {
EVP_CIPHER_CTX_free(ctx_);
ctx_ = nullptr;
@ -228,7 +230,9 @@ std::unique_ptr<EncryptionProvider> OpensslProvider::CreateProvider() {
}
Status OpensslProvider::handleErrors (const char * str) const {
# ifndef OPENSSL_NO_STDIO
ERR_print_errors_fp(stderr);
# endif
return Status::Aborted(str);
}

Loading…
Cancel
Save