summaryrefslogtreecommitdiffstats
path: root/crypto/ec_signature_creator_openssl.cc
diff options
context:
space:
mode:
authormlamouri <mlamouri@chromium.org>2015-10-20 18:23:09 -0700
committerCommit bot <commit-bot@chromium.org>2015-10-21 01:24:06 +0000
commitef55346ab6d1d5b2ceb0a3287e896a58b5388422 (patch)
tree6314943d089563950eec202a45d2afa87a218531 /crypto/ec_signature_creator_openssl.cc
parent70b79cd641e3792f7edfb9d723b7b3c5f7c903b9 (diff)
downloadchromium_src-ef55346ab6d1d5b2ceb0a3287e896a58b5388422.zip
chromium_src-ef55346ab6d1d5b2ceb0a3287e896a58b5388422.tar.gz
chromium_src-ef55346ab6d1d5b2ceb0a3287e896a58b5388422.tar.bz2
Remove unused private fields in crypto/.
This needed in order to use "= delete" for DISALLOW_COPY_AND_ASSIGN. BUG=447445 Review URL: https://codereview.chromium.org/1242593003 Cr-Commit-Position: refs/heads/master@{#355210}
Diffstat (limited to 'crypto/ec_signature_creator_openssl.cc')
-rw-r--r--crypto/ec_signature_creator_openssl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ec_signature_creator_openssl.cc b/crypto/ec_signature_creator_openssl.cc
index c422cef..30343a7 100644
--- a/crypto/ec_signature_creator_openssl.cc
+++ b/crypto/ec_signature_creator_openssl.cc
@@ -18,7 +18,7 @@
namespace crypto {
ECSignatureCreatorImpl::ECSignatureCreatorImpl(ECPrivateKey* key)
- : key_(key), signature_len_(0) {
+ : key_(key) {
EnsureOpenSSLInit();
}