From mboxrd@z Thu Jan 1 00:00:00 1970 From: Fan Zhang Subject: [PATCH v2] examples/ip_pipeline: fix buffer not null terminated. Date: Tue, 17 Apr 2018 10:45:46 +0100 Message-ID: <20180417094546.80472-1-roy.fan.zhang@intel.com> Cc: cristian.dumitrescu@intel.com, jasvinder.singh@intel.com To: dev@dpdk.org Return-path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 6F4C38D97 for ; Tue, 17 Apr 2018 11:53:19 +0200 (CEST) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Coverity issue: 272563 Fixes: 8245472c58c8 ("examples/ip_pipeline: add sw queue object") Signed-off-by: Fan Zhang --- v2: - using more generic strlcpy approach examples/ip_pipeline/swq.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/ip_pipeline/swq.c b/examples/ip_pipeline/swq.c index c11bbf27e..7e54a1dbf 100644 --- a/examples/ip_pipeline/swq.c +++ b/examples/ip_pipeline/swq.c @@ -5,6 +5,8 @@ #include #include +#include + #include "swq.h" static struct swq_list swq_list; @@ -64,7 +66,7 @@ swq_create(const char *name, struct swq_params *params) } /* Node fill in */ - strncpy(swq->name, name, sizeof(swq->name)); + strlcpy(swq->name, name, sizeof(swq->name)); swq->r = r; /* Node add to list */ -- 2.13.6