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

Commit b1f57195 authored by Brian Haley's avatar Brian Haley Committed by David S. Miller
Browse files

netlink: silence compiler warning



  CC      net/netlink/genetlink.o
net/netlink/genetlink.c: In function ‘genl_register_mc_group’:
net/netlink/genetlink.c:139: warning: ‘err’ may be used uninitialized in this function

From following the code 'err' is initialized, but set it to zero to
silence the warning.

Signed-off-by: default avatarBrian Haley <brian.haley@hp.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f1751c57
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -136,7 +136,7 @@ int genl_register_mc_group(struct genl_family *family,
{
	int id;
	unsigned long *new_groups;
	int err;
	int err = 0;

	BUG_ON(grp->name[0] == '\0');