Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f0da7ee4 authored by Jesper Juhl's avatar Jesper Juhl Committed by Jiri Kosina
Browse files

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: default avatarJesper Juhl <jj@chaosbits.net>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 9b42f065
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -216,7 +216,6 @@ static void ebt_ulog_packet(unsigned int hooknr, const struct sk_buff *skb,
nlmsg_failure:
	pr_debug("error during NLMSG_PUT. This should "
		 "not happen, please report to author.\n");
	goto unlock;
alloc_failure:
	goto unlock;
}