Skip to content

Commit

Permalink
Fix NoSSL AesDecryptor::Make
Browse files Browse the repository at this point in the history
  • Loading branch information
EnricoMi committed Jan 29, 2025
1 parent 1b553eb commit fbe3a1c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions cpp/src/parquet/encryption/encryption_internal_nossl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,8 @@ AesDecryptor::AesDecryptor(ParquetCipher::type alg_id, int32_t key_len, bool met
ThrowOpenSSLRequiredException();
}

std::shared_ptr<AesDecryptor> AesDecryptor::Make(
ParquetCipher::type alg_id, int32_t key_len, bool metadata,
std::vector<std::weak_ptr<AesDecryptor>>* all_decryptors) {
std::shared_ptr<AesDecryptor> AesDecryptor::Make(ParquetCipher::type alg_id,
int32_t key_len, bool metadata) {
ThrowOpenSSLRequiredException();
return NULLPTR;
}
Expand Down

0 comments on commit fbe3a1c

Please sign in to comment.