numam-dpdk/drivers/net/vdev_netvsc
Michael Santana f4be6a9a29 fix off-by-one errors in snprintf
snprintf guarantees to always correctly place a null terminator
in the buffer string. So manually placing a null terminator
in a buffer right after a call to snprintf is redundant code.

Additionally, there is no need to use 'sizeof(buffer) - 1' in snprintf as this
means we are not using the last character in the buffer. 'sizeof(buffer)' is
enough.

Cc: stable@dpdk.org

Signed-off-by: Michael Santana <msantana@redhat.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
Acked-by: Anatoly Burakov <anatoly.burakov@intel.com>
2019-05-29 13:02:53 +02:00
..
Makefile align SPDX Mellanox copyrights 2018-04-11 01:47:47 +02:00
meson.build build: increase readability via shortcut variables 2019-04-17 18:09:52 +02:00
rte_pmd_vdev_netvsc_version.map net/vdev_netvsc: introduce Hyper-V platform driver 2018-01-21 15:51:52 +01:00
vdev_netvsc.c fix off-by-one errors in snprintf 2019-05-29 13:02:53 +02:00