aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/prov/openssl
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2016-10-25 11:48:25 -0400
committerJack Lloyd <[email protected]>2016-10-25 11:48:25 -0400
commite8908d4fb671f9aa014c64c4fe6f3105ac5c4907 (patch)
tree1ad7287b4ef2eab2b1bffd402a78706eaf96c316 /src/lib/prov/openssl
parent85f7f0db9e5f6da2503aaf601b54aa994dc33aba (diff)
Static analyzer fixes
Check return value of read, found by Clang. See also #677 Remove unused member variable in OpenSSL ECC, found by Clang. In ECDSA tests, if the pointer is null we should return rather than dereferencing it. Found by Coverity.
Diffstat (limited to 'src/lib/prov/openssl')
-rw-r--r--src/lib/prov/openssl/openssl_ec.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lib/prov/openssl/openssl_ec.cpp b/src/lib/prov/openssl/openssl_ec.cpp
index 7b20b1c73..f0e70fe56 100644
--- a/src/lib/prov/openssl/openssl_ec.cpp
+++ b/src/lib/prov/openssl/openssl_ec.cpp
@@ -267,7 +267,6 @@ class OpenSSL_ECDH_KA_Operation : public PK_Ops::Key_Agreement_with_KDF
private:
std::unique_ptr<EC_KEY, std::function<void (EC_KEY*)>> m_ossl_ec;
- size_t m_order_bits = 0;
};
}