crypto: hash - initialize entry len for null input in crypto hash sg list walk
authorTim Chen <tim.c.chen@linux.intel.com>
Thu, 10 Jul 2014 23:18:08 +0000 (16:18 -0700)
committerHerbert Xu <herbert@gondor.apana.org.au>
Mon, 25 Aug 2014 12:27:16 +0000 (20:27 +0800)
commit6d9529c586dbf0d356916d113f72f36397e71cdb
tree3d3d7e19b45fcadf140ce51694a84b086a87424b
parent7d1311b93e58ed55f3a31cc8f94c4b8fe988a2b9
crypto: hash - initialize entry len for null input in crypto hash sg list walk

For the special case when we have a null input string, we want
to initialize the entry len to 0 for the hash/ahash walk, so
cyrpto_hash_walk_last will return the correct result indicating
that we have completed the scatter list walk.  Otherwise we may
keep walking the sg list and access bogus memory address.

Signed-off-by: Tim Chen <tim.c.chen@linux.intel.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/ahash.c