[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1410716087-16154-1-git-send-email-rickard_strandqvist@spectrumdigital.se>
Date: Sun, 14 Sep 2014 19:34:47 +0200
From: Rickard Strandqvist <rickard_strandqvist@...ctrumdigital.se>
To: Jon Mason <jdmason@...zu.us>,
"David S. Miller" <davem@...emloft.net>
Cc: Rickard Strandqvist <rickard_strandqvist@...ctrumdigital.se>,
"Eric W. Biederman" <ebiederm@...ssion.com>,
Jingoo Han <jg1.han@...sung.com>,
Alexander Gordeev <agordeev@...hat.com>,
Benoit Taine <benoit.taine@...6.fr>,
Manuel Schölling <manuel.schoelling@....de>,
Ben Hutchings <bhutchings@...arflare.com>,
John Stultz <john.stultz@...aro.org>,
Christian Engelmayer <cengelma@....at>, netdev@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: [PATCH] net: ethernet: neterion: vxge: vxge-main.c: Cleaning up missing null-terminate in conjunction with strncpy
Replacing strncpy with strlcpy to avoid strings that lacks null terminate.
Signed-off-by: Rickard Strandqvist <rickard_strandqvist@...ctrumdigital.se>
---
drivers/net/ethernet/neterion/vxge/vxge-main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/ethernet/neterion/vxge/vxge-main.c b/drivers/net/ethernet/neterion/vxge/vxge-main.c
index 4f40d7b..cc0485e 100644
--- a/drivers/net/ethernet/neterion/vxge/vxge-main.c
+++ b/drivers/net/ethernet/neterion/vxge/vxge-main.c
@@ -3537,7 +3537,7 @@ static void vxge_device_unregister(struct __vxge_hw_device *hldev)
vxge_debug_entryexit(vdev->level_trace, "%s: %s:%d", vdev->ndev->name,
__func__, __LINE__);
- strncpy(buf, dev->name, IFNAMSIZ);
+ strlcpy(buf, dev->name, IFNAMSIZ);
flush_work(&vdev->reset_task);
--
1.7.10.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists