Remove extra memset from __nlmsg_alloc
A few lines above nm->nm_nlh is already allocated with calloc, the allocated memory has at least sizeof(struct nlmsghdr). Signed-off-by: Olaf Hering <olaf@aepfle.de>
This commit is contained in:
parent
2ae5298408
commit
2d20d097e7
1 changed files with 0 additions and 2 deletions
|
@ -275,8 +275,6 @@ static struct nl_msg *__nlmsg_alloc(size_t len)
|
|||
if (!nm->nm_nlh)
|
||||
goto errout;
|
||||
|
||||
memset(nm->nm_nlh, 0, sizeof(struct nlmsghdr));
|
||||
|
||||
nm->nm_protocol = -1;
|
||||
nm->nm_size = len;
|
||||
nm->nm_nlh->nlmsg_len = nlmsg_total_size(0);
|
||||
|
|
Loading…
Add table
Reference in a new issue