This is an automated email from the git hooks/post-receive script.

skunnyk pushed a 
commit to branch 
master
in repository panel-plugins/xfce4-netload-plugin.

commit 011a2ca9ee640618351c85ab902fa937571da8b2
Author: Guido Berhoerster <guido+x...@berhoerster.name>
Date:   Thu Jun 8 11:01:34 2017 +0200

    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 <libxfce4util/libxfce4util.h>
 
+
 /* 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 );
     

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
_______________________________________________
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits

Reply via email to