diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-05-28 15:55:54 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2009-05-28 15:55:54 +0000 |
commit | cec852c0870d3df36ed9e5bc03b6ff70f4d67c75 (patch) | |
tree | 0d7958494894e9ffae1853f3ee7fe3ce0f788b61 /target/linux/generic-2.4/patches/900-CVE-2008-2136.patch | |
parent | b7ae5e7b7cb2cb23effc6007b5bc8527be22e054 (diff) | |
download | mtk-20170518-cec852c0870d3df36ed9e5bc03b6ff70f4d67c75.zip mtk-20170518-cec852c0870d3df36ed9e5bc03b6ff70f4d67c75.tar.gz mtk-20170518-cec852c0870d3df36ed9e5bc03b6ff70f4d67c75.tar.bz2 |
update to 2.4.37, tested on wrt54gs (#4766)
SVN-Revision: 16144
Diffstat (limited to 'target/linux/generic-2.4/patches/900-CVE-2008-2136.patch')
-rw-r--r-- | target/linux/generic-2.4/patches/900-CVE-2008-2136.patch | 26 |
1 files changed, 0 insertions, 26 deletions
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 deleted file mode 100644 index 8e8be48..0000000 --- a/target/linux/generic-2.4/patches/900-CVE-2008-2136.patch +++ /dev/null @@ -1,26 +0,0 @@ -Backport of: - -From: David S. Miller <davem@davemloft.net> -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 <paul@pmarks.net>. - -Signed-off-by: David S. Miller <davem@davemloft.net> ---- 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; - } - |