diff options
Diffstat (limited to 'crypto/blkcipher.c')
| -rw-r--r-- | crypto/blkcipher.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/blkcipher.c b/crypto/blkcipher.c index 11b981492031..8cc1622b2ee0 100644 --- a/crypto/blkcipher.c +++ b/crypto/blkcipher.c @@ -326,12 +326,12 @@ static int blkcipher_walk_first(struct blkcipher_desc *desc,  	if (WARN_ON_ONCE(in_irq()))  		return -EDEADLK; +	walk->iv = desc->info;  	walk->nbytes = walk->total;  	if (unlikely(!walk->total))  		return 0;  	walk->buffer = NULL; -	walk->iv = desc->info;  	if (unlikely(((unsigned long)walk->iv & walk->alignmask))) {  		int err = blkcipher_copy_iv(walk);  		if (err)  | 
