[PATCH] fix two bogus kfree(skb)

From: Patrick McHardy (kaber@trash.net)
Date: Wed May 14 2003 - 10:29:29 EST


This patch fixes two occurences of kfree(skb) in net/bridge/br_input.c and
net/decnet/netfilter/dn_rtmsg.c.

Best regards,
Patrick


# This is a BitKeeper generated patch for the following project:
# Project Name: Linux kernel tree
# This patch format is intended for GNU patch command version 2.5 or higher.
# This patch includes the following deltas:
# ChangeSet 1.1114 -> 1.1115
# net/bridge/br_input.c 1.11 -> 1.12
# net/decnet/netfilter/dn_rtmsg.c 1.1 -> 1.2
#
# The following is the BitKeeper ChangeSet Log
# --------------------------------------------
# 03/05/14 kaber@trash.net 1.1115
# Fix bogus kfree in br_input.c and dn_rtmsg.c
# --------------------------------------------
#
diff -Nru a/net/bridge/br_input.c b/net/bridge/br_input.c
--- a/net/bridge/br_input.c Wed May 14 17:26:31 2003
+++ b/net/bridge/br_input.c Wed May 14 17:26:31 2003
@@ -64,7 +64,7 @@
         smp_read_barrier_depends();
 
         if (p == NULL || p->state == BR_STATE_DISABLED) {
- kfree(skb);
+ kfree_skb(skb);
                 goto out;
         }
 
diff -Nru a/net/decnet/netfilter/dn_rtmsg.c b/net/decnet/netfilter/dn_rtmsg.c
--- a/net/decnet/netfilter/dn_rtmsg.c Wed May 14 17:26:31 2003
+++ b/net/decnet/netfilter/dn_rtmsg.c Wed May 14 17:26:31 2003
@@ -55,7 +55,7 @@
 
 nlmsg_failure:
         if (skb)
- kfree(skb);
+ kfree_skb(skb);
         *errp = -ENOMEM;
         if (net_ratelimit())
                 printk(KERN_ERR "dn_rtmsg: error creating netlink message\n");

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Thu May 15 2003 - 22:00:52 EST