aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crypto/af_alg.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/crypto/af_alg.c b/crypto/af_alg.c
index 314c52c967e5..c166f424871c 100644
--- a/crypto/af_alg.c
+++ b/crypto/af_alg.c
@@ -1155,8 +1155,10 @@ int af_alg_get_rsgl(struct sock *sk, struct msghdr *msg, int flags,
1155 1155
1156 /* make one iovec available as scatterlist */ 1156 /* make one iovec available as scatterlist */
1157 err = af_alg_make_sg(&rsgl->sgl, &msg->msg_iter, seglen); 1157 err = af_alg_make_sg(&rsgl->sgl, &msg->msg_iter, seglen);
1158 if (err < 0) 1158 if (err < 0) {
1159 rsgl->sg_num_bytes = 0;
1159 return err; 1160 return err;
1161 }
1160 1162
1161 /* chain the new scatterlist with previous one */ 1163 /* chain the new scatterlist with previous one */
1162 if (areq->last_rsgl) 1164 if (areq->last_rsgl)