From: Felix Fietkau Date: Tue, 23 Dec 2008 12:23:31 +0000 (+0000) Subject: backport r13734 to 8.09 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=818d47075921d2548d831a6c98b0c6887d001ea3;p=openwrt%2Fsvn-archive%2Farchive.git backport r13734 to 8.09 SVN-Revision: 13735 --- diff --git a/target/linux/generic-2.4/patches/900-CVE-2008-2136.patch b/target/linux/generic-2.4/patches/900-CVE-2008-2136.patch new file mode 100644 index 0000000000..8e8be488df --- /dev/null +++ b/target/linux/generic-2.4/patches/900-CVE-2008-2136.patch @@ -0,0 +1,26 @@ +Backport of: + +From: David S. Miller +Date: Fri, 9 May 2008 06:40:26 +0000 (-0700) +Subject: sit: Add missing kfree_skb() on pskb_may_pull() failure. +X-Git-Tag: v2.6.26-rc2~19^2 +X-Git-Url: http://git.kernel.org/?p=linux%2Fkernel%2Fgit%2Ftorvalds%2Flinux-2.6.git;a=commitdiff_plain;h=36ca34cc3b8335eb1fe8bd9a1d0a2592980c3f02 + +sit: Add missing kfree_skb() on pskb_may_pull() failure. + +Noticed by Paul Marks . + +Signed-off-by: David S. Miller +--- a/net/ipv6/sit.c ++++ b/net/ipv6/sit.c +@@ -410,9 +410,9 @@ int ipip6_rcv(struct sk_buff *skb) + } + + icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PROT_UNREACH, 0); +- kfree_skb(skb); + read_unlock(&ipip6_lock); + out: ++ kfree_skb(skb); + return 0; + } +