mirror of
https://github.com/joel16/android_kernel_sony_msm8994.git
synced 2024-11-24 12:40:24 +00:00
xtensa: strlcpy is smart enough
strlcpy already accounts for the trailing zero in its length computation, so there is no need to substract one to the buffer size. Signed-off-by: Jean Delvare <khali@linux-fr.org> Cc: Chris Zankel <chris@zankel.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
ee17b36fd0
commit
0ddb16cfb0
@ -251,7 +251,7 @@ static int tuntap_open(struct iss_net_private *lp)
|
||||
|
||||
memset(&ifr, 0, sizeof ifr);
|
||||
ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
|
||||
strlcpy(ifr.ifr_name, dev_name, sizeof ifr.ifr_name - 1);
|
||||
strlcpy(ifr.ifr_name, dev_name, sizeof ifr.ifr_name);
|
||||
|
||||
if ((err = simc_ioctl(fd, TUNSETIFF, (void*) &ifr)) < 0) {
|
||||
printk("Failed to set interface, returned %d "
|
||||
|
Loading…
Reference in New Issue
Block a user