From: Julia Lawall Date: Thu, 11 Aug 2011 01:59:38 +0000 (+0000) Subject: net/bridge/netfilter/ebtables.c: use available error handling code X-Git-Tag: v3.1-rc2~19^2~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5189054dd7ff18576446edc270b6b69fa8285336;p=platform%2Fkernel%2Flinux-3.10.git net/bridge/netfilter/ebtables.c: use available error handling code Free the locally allocated table and newinfo as done in adjacent error handling code. Signed-off-by: Julia Lawall Signed-off-by: David S. Miller --- diff --git a/net/bridge/netfilter/ebtables.c b/net/bridge/netfilter/ebtables.c index 2b5ca1a..5864cc4 100644 --- a/net/bridge/netfilter/ebtables.c +++ b/net/bridge/netfilter/ebtables.c @@ -1198,7 +1198,8 @@ ebt_register_table(struct net *net, const struct ebt_table *input_table) if (table->check && table->check(newinfo, table->valid_hooks)) { BUGPRINT("The table doesn't like its own initial data, lol\n"); - return ERR_PTR(-EINVAL); + ret = -EINVAL; + goto free_chainstack; } table->private = newinfo;