From mboxrd@z Thu Jan 1 00:00:00 1970 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) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 17 Apr 2018 02:53:18 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.48,463,1517904000"; d="scan'208";a="48519108" Received: from silpixa00398673.ir.intel.com (HELO silpixa00398673.ger.corp.intel.com) ([10.237.223.54]) by orsmga001.jf.intel.com with ESMTP; 17 Apr 2018 02:53:16 -0700 From: Fan Zhang To: dev@dpdk.org Cc: cristian.dumitrescu@intel.com, jasvinder.singh@intel.com Date: Tue, 17 Apr 2018 10:45:46 +0100 Message-Id: <20180417094546.80472-1-roy.fan.zhang@intel.com> X-Mailer: git-send-email 2.13.6 Subject: [dpdk-dev] [PATCH v2] examples/ip_pipeline: fix buffer not null terminated. X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Apr 2018 09:53:19 -0000 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