diff options
| -rw-r--r-- | net/sunrpc/auth_gss/gss_spkm3_seal.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/sunrpc/auth_gss/gss_spkm3_seal.c b/net/sunrpc/auth_gss/gss_spkm3_seal.c index 3ec9cd31420c..d158635de6c0 100644 --- a/net/sunrpc/auth_gss/gss_spkm3_seal.c +++ b/net/sunrpc/auth_gss/gss_spkm3_seal.c | |||
| @@ -169,6 +169,10 @@ make_spkm3_checksum(s32 cksumtype, struct xdr_netobj *key, char *header, | |||
| 169 | if (err) | 169 | if (err) |
| 170 | goto out; | 170 | goto out; |
| 171 | 171 | ||
| 172 | err = crypto_hash_init(&desc); | ||
| 173 | if (err) | ||
| 174 | goto out; | ||
| 175 | |||
| 172 | sg_set_buf(sg, header, hdrlen); | 176 | sg_set_buf(sg, header, hdrlen); |
| 173 | crypto_hash_update(&desc, sg, sg->length); | 177 | crypto_hash_update(&desc, sg, sg->length); |
| 174 | 178 | ||
