aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorJesper Juhl <jj@chaosbits.net>2011-07-17 13:56:38 -0400
committerJiri Kosina <jkosina@suse.cz>2011-07-21 08:02:17 -0400
commitf0da7ee410e63a1521af734c3970acc1470e8c50 (patch)
treeb88bcd8e857d9910fd5609604c2ccd07fd5e3a33 /net
parent9b42f06517ae19d6519e9c54eac5ea58d00f3028 (diff)
net, netfilter: Remove redundant goto in ebt_ulog_packet
In net/bridge/netfilter/ebt_ulog.c:ebt_ulog_packet() the 'goto unlock' before the 'alloc_failure' label is completely redundant. This patch removes it. Signed-off-by: Jesper Juhl <jj@chaosbits.net> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'net')
-rw-r--r--net/bridge/netfilter/ebt_ulog.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/net/bridge/netfilter/ebt_ulog.c b/net/bridge/netfilter/ebt_ulog.c
index 26377e96fa1c..bf2a333ca7c7 100644
--- a/net/bridge/netfilter/ebt_ulog.c
+++ b/net/bridge/netfilter/ebt_ulog.c
@@ -216,7 +216,6 @@ unlock:
216nlmsg_failure: 216nlmsg_failure:
217 pr_debug("error during NLMSG_PUT. This should " 217 pr_debug("error during NLMSG_PUT. This should "
218 "not happen, please report to author.\n"); 218 "not happen, please report to author.\n");
219 goto unlock;
220alloc_failure: 219alloc_failure:
221 goto unlock; 220 goto unlock;
222} 221}