aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2016-08-11 18:17:22 +0100
committerDavid S. Miller <davem@davemloft.net>2016-08-13 14:56:17 -0700
commitb4c0e0c61f81dedc82dda35c287ea149ff98b434 (patch)
treeec7aea76bd12aa927205b592f846f782cc8904d2 /net/ipv6
parentbpf: fix bpf_skb_in_cgroup helper naming (diff)
downloadlinux-dev-b4c0e0c61f81dedc82dda35c287ea149ff98b434.tar.xz
linux-dev-b4c0e0c61f81dedc82dda35c287ea149ff98b434.zip
calipso: fix resource leak on calipso_genopt failure
Currently, if calipso_genopt fails then the error exit path does not free the ipv6_opt_hdr new causing a memory leak. Fix this by kfree'ing new on the error exit path. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r--net/ipv6/calipso.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/net/ipv6/calipso.c b/net/ipv6/calipso.c
index c53b92c617c5..37ac9de713c6 100644
--- a/net/ipv6/calipso.c
+++ b/net/ipv6/calipso.c
@@ -952,8 +952,10 @@ calipso_opt_insert(struct ipv6_opt_hdr *hop,
memcpy(new, hop, start);
ret_val = calipso_genopt((unsigned char *)new, start, buf_len, doi_def,
secattr);
- if (ret_val < 0)
+ if (ret_val < 0) {
+ kfree(new);
return ERR_PTR(ret_val);
+ }
buf_len = start + ret_val;
/* At this point buf_len aligns to 4n, so (buf_len & 4) pads to 8n */