From 011a2ca9ee640618351c85ab902fa937571da8b2 Mon Sep 17 00:00:00 2001 From: Guido Berhoerster Date: Thu, 8 Jun 2017 11:01:34 +0200 Subject: [PATCH] Fix array out of bounds write Fix #11328 --- panel-plugin/net.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/panel-plugin/net.c b/panel-plugin/net.c index c66d144..6e8276c 100644 --- a/panel-plugin/net.c +++ b/panel-plugin/net.c @@ -35,6 +35,7 @@ #include + /* From Wormulon */ #include "net.h" #include "os.h" @@ -81,8 +82,7 @@ int init_netload(netdata* data, const char* device) return TRUE; } - strncpy( data->ifdata.if_name, device, INTERFACE_NAME_LENGTH); - data->ifdata.if_name[INTERFACE_NAME_LENGTH] = '\0'; + g_strlcpy(data->ifdata.if_name, device, sizeof(data->ifdata.if_name)); init_osspecific( data );