On Thu, 2012-04-05 at 14:07 -0400, Jakub Hrozek wrote:
> Reported in https://bugzilla.redhat.com/show_bug.cgi?id=808107
> 
> In the unlikely case that the interface name was IFNAMSIZ bytes long or
> longer, strncpy wouldn't NULL-terminate the buffer. Copy one byte less
> to ensure the buffer is NULL-terminated.

Nack, this is incomplete. You need to do:

strncpy(iwr.ifr_ifrn.ifrn_name, ifname, IFNAMSIZ-1);
iwr.ifr_ifrn.ifrn_name[IFNAMSIZ-1] = '\0';

Attachment: signature.asc
Description: This is a digitally signed message part

_______________________________________________
sssd-devel mailing list
[email protected]
https://fedorahosted.org/mailman/listinfo/sssd-devel

Reply via email to