diff options
author | Bob Beck <beck@cvs.openbsd.org> | 2014-04-23 05:13:58 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 2014-04-23 05:13:58 +0000 |
commit | 603c6a705754e00bbe9ba3b052a9b15b8405a2af (patch) | |
tree | 176f417c7a6f0d2366ea31bb1ea3df85a8b8f658 /lib/libcrypto/engine | |
parent | 79a05e6fbd1e7ffc36cfbf46ab6d09a226681511 (diff) |
Make libssl and libcrypto compile with -Werror
ok miod@
Diffstat (limited to 'lib/libcrypto/engine')
-rw-r--r-- | lib/libcrypto/engine/hw_cryptodev.c | 2 |
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) |