projects
/
wrapfs-2.6.38.y.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0df445b
)
ah6: fix error return code in ah6_input()
author
Zhang Changzhong
<zhangchangzhong@huawei.com>
Tue, 17 Nov 2020 02:45:05 +0000
(10:45 +0800)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Tue, 24 Nov 2020 12:05:35 +0000
(13:05 +0100)
[ Upstream commit
a5ebcbdf34b65fcc07f38eaf2d60563b42619a59
]
Fix to return a negative error code from the error handling
case instead of 0, as done elsewhere in this function.
Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Zhang Changzhong <zhangchangzhong@huawei.com>
Link:
https://lore.kernel.org/r/1605581105-35295-1-git-send-email-zhangchangzhong@huawei.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
net/ipv6/ah6.c
patch
|
blob
|
history
diff --git
a/net/ipv6/ah6.c
b/net/ipv6/ah6.c
index 7802b72196f32efb7a838d47f7e3cc27654cbc6e..97377765f27c22299359a8997b9596afbcc2be24 100644
(file)
--- a/
net/ipv6/ah6.c
+++ b/
net/ipv6/ah6.c
@@
-599,7
+599,8
@@
static int ah6_input(struct xfrm_state *x, struct sk_buff *skb)
memcpy(auth_data, ah->auth_data, ahp->icv_trunc_len);
memset(ah->auth_data, 0, ahp->icv_trunc_len);
- if (ipv6_clear_mutable_options(ip6h, hdr_len, XFRM_POLICY_IN))
+ err = ipv6_clear_mutable_options(ip6h, hdr_len, XFRM_POLICY_IN);
+ if (err)
goto out_free;
ip6h->priority = 0;