Fix GCC 8 compiler warnings on strncpy's truncated copy on debian distro 98/16898/1
authorSteven Luong <sluong@cisco.com>
Sat, 19 Jan 2019 06:53:18 +0000 (22:53 -0800)
committerSteven Luong <sluong@cisco.com>
Sat, 19 Jan 2019 07:10:11 +0000 (23:10 -0800)
commitddccf7bcee550c5bbdddbaa2abbd34833a7c9585
tree406eec7b9f69e1f3020117ca96a4eea43b5a8b6e
parent36eb7c214280a5442186a2d13ed018bbd26a1a3a
Fix GCC 8 compiler warnings on strncpy's truncated copy on debian distro

For some reason, GCC 8 in debian is pickier than GCC 8 in ubuntu. It complains
about things in strncpy like this

/home/sluong/vpp/src/vlib/linux/pci.c:485:7: error: ‘strncpy’ output may be
truncated copying 15 bytes from a string of length 255 [-Werror=stringop-truncation]
       strncpy (ifr.ifr_name, e->d_name, sizeof (ifr.ifr_name) - 1);
       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/sluong/vpp/src/vlib/linux/pci.c: At top level:

It also complains similar things in string_test.c

The fix in pci.c is to convert strncpy to use clib_strncpy
The fix in string_test.c is condiational compile the complained code for GCC 8.

Change-Id: Ic9341ca54ed7407210502197a28283bc42c26662
Signed-off-by: Steven Luong <sluong@cisco.com>
src/plugins/unittest/string_test.c
src/vlib/linux/pci.c