projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9b42f06
)
net, netfilter: Remove redundant goto in ebt_ulog_packet
author
Jesper Juhl
<jj@chaosbits.net>
Sun, 17 Jul 2011 17:56:38 +0000
(19:56 +0200)
committer
Jiri Kosina
<jkosina@suse.cz>
Thu, 21 Jul 2011 12:02:17 +0000
(14:02 +0200)
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>
net/bridge/netfilter/ebt_ulog.c
patch
|
blob
|
history
diff --git
a/net/bridge/netfilter/ebt_ulog.c
b/net/bridge/netfilter/ebt_ulog.c
index 26377e96fa1cf129d2b495c872647ca74281b5fd..bf2a333ca7c7651812f5318d644d19d185efff61 100644
(file)
--- a/
net/bridge/netfilter/ebt_ulog.c
+++ b/
net/bridge/netfilter/ebt_ulog.c
@@
-216,7
+216,6
@@
unlock:
nlmsg_failure:
pr_debug("error during NLMSG_PUT. This should "
"not happen, please report to author.\n");
- goto unlock;
alloc_failure:
goto unlock;
}