summaryrefslogtreecommitdiff
path: root/lib/libcrypto/engine
diff options
context:
space:
mode:
authorBob Beck <beck@cvs.openbsd.org>2014-04-23 05:13:58 +0000
committerBob Beck <beck@cvs.openbsd.org>2014-04-23 05:13:58 +0000
commit603c6a705754e00bbe9ba3b052a9b15b8405a2af (patch)
tree176f417c7a6f0d2366ea31bb1ea3df85a8b8f658 /lib/libcrypto/engine
parent79a05e6fbd1e7ffc36cfbf46ab6d09a226681511 (diff)
Make libssl and libcrypto compile with -Werror
ok miod@
Diffstat (limited to 'lib/libcrypto/engine')
-rw-r--r--lib/libcrypto/engine/hw_cryptodev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libcrypto/engine/hw_cryptodev.c b/lib/libcrypto/engine/hw_cryptodev.c
index bc953872dd0..190dcc4f753 100644
--- a/lib/libcrypto/engine/hw_cryptodev.c
+++ b/lib/libcrypto/engine/hw_cryptodev.c
@@ -654,7 +654,7 @@ xcrypt_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
unsigned char *ivs = DOALIGN(ivs_store);
void *iiv, *iv = NULL, *ivp = NULL;
const void *usein = in;
- void *useout = out, *spare;
+ void *useout = out, *spare = NULL;
int cws[4 + 3], *cw = DOALIGN(cws);
if (!inl)