From: Patrick McHardy <kaber@trash.net>
To: "David S. Miller" <davem@redhat.com>
Cc: netdev@oss.sgi.com
Subject: [PATCH 2.6 3/7]: Fix free_netdev after failed alloc_netdev in ipgre_init
Date: Sun, 03 Oct 2004 23:12:57 +0200 [thread overview]
Message-ID: <41606B59.5020502@trash.net> (raw)
[-- Attachment #1: Type: text/plain, Size: 46 bytes --]
Passing a NULL-ptr to free_netdev is wrong.
[-- Attachment #2: 03.diff --]
[-- Type: text/x-patch, Size: 1225 bytes --]
# This is a BitKeeper generated diff -Nru style patch.
#
# ChangeSet
# 2004/10/03 20:39:25+02:00 kaber@coreworks.de
# [IPV4]: Fix free_netdev after failed alloc_netdev in ipgre_init
#
# Signed-off-by: Patrick McHardy <kaber@trash.net>
#
# net/ipv4/ip_gre.c
# 2004/10/03 20:38:45+02:00 kaber@coreworks.de +6 -5
# [IPV4]: Fix free_netdev after failed alloc_netdev in ipgre_init
#
# Signed-off-by: Patrick McHardy <kaber@trash.net>
#
diff -Nru a/net/ipv4/ip_gre.c b/net/ipv4/ip_gre.c
--- a/net/ipv4/ip_gre.c 2004-10-03 22:19:31 +02:00
+++ b/net/ipv4/ip_gre.c 2004-10-03 22:19:31 +02:00
@@ -1250,7 +1250,7 @@
static int __init ipgre_init(void)
{
- int err = -EINVAL;
+ int err;
printk(KERN_INFO "GRE over IPv4 tunneling driver\n");
@@ -1263,18 +1263,19 @@
ipgre_tunnel_setup);
if (!ipgre_fb_tunnel_dev) {
err = -ENOMEM;
- goto fail;
+ goto err1;
}
ipgre_fb_tunnel_dev->init = ipgre_fb_tunnel_init;
if ((err = register_netdev(ipgre_fb_tunnel_dev)))
- goto fail;
+ goto err2;
out:
return err;
-fail:
- inet_del_protocol(&ipgre_protocol, IPPROTO_GRE);
+err2:
free_netdev(ipgre_fb_tunnel_dev);
+err1:
+ inet_del_protocol(&ipgre_protocol, IPPROTO_GRE);
goto out;
}
reply other threads:[~2004-10-03 21:12 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=41606B59.5020502@trash.net \
--to=kaber@trash.net \
--cc=davem@redhat.com \
--cc=netdev@oss.sgi.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.