diff options
Diffstat (limited to 'crypto/algif_skcipher.c')
| -rw-r--r-- | crypto/algif_skcipher.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/algif_skcipher.c b/crypto/algif_skcipher.c index df86fb47c3ae..a81c10faf9c4 100644 --- a/crypto/algif_skcipher.c +++ b/crypto/algif_skcipher.c | |||
| @@ -392,7 +392,8 @@ static int skcipher_sendmsg(struct socket *sock, struct msghdr *msg, | |||
| 392 | 392 | ||
| 393 | sgl = list_entry(ctx->tsgl.prev, struct skcipher_sg_list, list); | 393 | sgl = list_entry(ctx->tsgl.prev, struct skcipher_sg_list, list); |
| 394 | sg = sgl->sg; | 394 | sg = sgl->sg; |
| 395 | sg_unmark_end(sg + sgl->cur); | 395 | if (sgl->cur) |
| 396 | sg_unmark_end(sg + sgl->cur - 1); | ||
| 396 | do { | 397 | do { |
| 397 | i = sgl->cur; | 398 | i = sgl->cur; |
| 398 | plen = min_t(size_t, len, PAGE_SIZE); | 399 | plen = min_t(size_t, len, PAGE_SIZE); |
