|
@@ -384,6 +384,9 @@ static inline struct sk_buff *genlmsg_new(size_t payload, gfp_t flags)
|
|
|
static inline int genl_set_err(struct genl_family *family, struct net *net,
|
|
|
u32 portid, u32 group, int code)
|
|
|
{
|
|
|
+ if (WARN_ON_ONCE(group >= family->n_mcgrps))
|
|
|
+ return -EINVAL;
|
|
|
+ group = family->mcgrp_offset + group;
|
|
|
return netlink_set_err(net->genl_sock, portid, group, code);
|
|
|
}
|
|
|
|