This commit is contained in:
V4bel 2026-05-08 05:22:07 +09:00
parent f351f5a0c2
commit 892d9a31d3

View file

@ -72,7 +72,7 @@ static int crypto_authenc_esn_decrypt(struct aead_request *req)
scatterwalk_map_and_copy(tmp, src, 0, 8, 0);
if (src == dst) {
scatterwalk_map_and_copy(tmp, dst, 4, 4, 1);
scatterwalk_map_and_copy(tmp + 1, dst, assoclen + cryptlen, 4, 1);
scatterwalk_map_and_copy(tmp + 1, dst, assoclen + cryptlen, 4, 1); // <=[3]
dst = scatterwalk_ffwd(areq_ctx->dst, dst, 4);
[...]
```