summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZhen Lei <thunder.leizhen@huawei.com>2018-06-27 11:49:28 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-09-05 09:26:23 +0200
commitb6f147a2d90765e68effe04c42f79875b33cd2af (patch)
treea2a8f9320b0610e0c72a726d93088e342b37ad60
parent0118f86d21f1fdc83e5b560d761b5db0fded25ad (diff)
downloadlinux-stable-b6f147a2d90765e68effe04c42f79875b33cd2af.tar.gz
linux-stable-b6f147a2d90765e68effe04c42f79875b33cd2af.tar.bz2
linux-stable-b6f147a2d90765e68effe04c42f79875b33cd2af.zip
esp6: fix memleak on error path in esp6_input
[ Upstream commit 7284fdf39a912322ce97de2d30def3c6068a418c ] This ought to be an omission in e6194923237 ("esp: Fix memleaks on error paths."). The memleak on error path in esp6_input is similar to esp_input of esp4. Fixes: e6194923237 ("esp: Fix memleaks on error paths.") Fixes: 3f29770723f ("ipsec: check return value of skb_to_sgvec always") Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com> Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com> Signed-off-by: Sasha Levin <alexander.levin@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--net/ipv6/esp6.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/net/ipv6/esp6.c b/net/ipv6/esp6.c
index 89910e2c10f4..f112fef79216 100644
--- a/net/ipv6/esp6.c
+++ b/net/ipv6/esp6.c
@@ -651,8 +651,10 @@ skip_cow:
sg_init_table(sg, nfrags);
ret = skb_to_sgvec(skb, sg, 0, skb->len);
- if (unlikely(ret < 0))
+ if (unlikely(ret < 0)) {
+ kfree(tmp);
goto out;
+ }
skb->ip_summed = CHECKSUM_NONE;