fixing issue #28, fixing memset operation in send_nl_req.

This commit is contained in:
Zakir Durumeric 2013-08-19 22:46:05 -04:00
parent 581725a8dd
commit 28e698cc7f
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ int send_nl_req(uint16_t msg_type, uint32_t seq,
return -1;
}
memset(nlmsg, 0, sizeof(struct nlmsghdr));
memset(nlmsg, 0, NLMSG_SPACE(payload_len));
memcpy(NLMSG_DATA(nlmsg), payload, payload_len);
nlmsg->nlmsg_type = msg_type;
nlmsg->nlmsg_len = NLMSG_LENGTH(payload_len);