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>
 {
        walk->total = req->nbytes;
 
-       if (!walk->total)
+       if (!walk->total) {
+               walk->entrylen = 0;
                return 0;
+       }
 
        walk->alignmask = crypto_ahash_alignmask(crypto_ahash_reqtfm(req));
        walk->sg = req->src;
 {
        walk->total = req->nbytes;
 
-       if (!walk->total)
+       if (!walk->total) {
+               walk->entrylen = 0;
                return 0;
+       }
 
        walk->alignmask = crypto_ahash_alignmask(crypto_ahash_reqtfm(req));
        walk->sg = req->src;
 {
        walk->total = len;
 
-       if (!walk->total)
+       if (!walk->total) {
+               walk->entrylen = 0;
                return 0;
+       }
 
        walk->alignmask = crypto_hash_alignmask(hdesc->tfm);
        walk->sg = sg;