Initialize field just in case.

GitOrigin-RevId: 4707c1101a6699fe37f8c942b6b66cfdd0e7bc36
This commit is contained in:
levlam 2020-06-13 21:04:29 +03:00
parent 584a0309c5
commit 8350cd2433

View File

@ -253,7 +253,7 @@ int pq_factorize(Slice pq_str, string *p_str, string *q_str) {
class AesState::Impl {
public:
EVP_CIPHER_CTX *ctx{nullptr};
bool encrypt;
bool encrypt{false};
Impl() = default;
Impl(const Impl &from) = delete;