From mboxrd@z Thu Jan 1 00:00:00 1970 From: Fan Zhang Subject: [PATCH] example/ip_pipeline: fix value overwrite Date: Fri, 11 Dec 2015 11:29:11 +0000 Message-ID: <1449833351-10011-6-git-send-email-roy.fan.zhang@intel.com> References: <1449833351-10011-1-git-send-email-roy.fan.zhang@intel.com> To: dev@dpdk.org Return-path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 50FB28E83 for ; Fri, 11 Dec 2015 12:29:17 +0100 (CET) In-Reply-To: <1449833351-10011-1-git-send-email-roy.fan.zhang@intel.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Coverity issue: 107136 Fixes: 7f64b9c004aa ("examples/ip_pipeline: rework config file syntax") Signed-off-by: Fan Zhang Acked-by: Cristian Dumitrescu --- examples/ip_pipeline/config_parse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/ip_pipeline/config_parse.c b/examples/ip_pipeline/config_parse.c index 67e58c9..4e194d6 100644 --- a/examples/ip_pipeline/config_parse.c +++ b/examples/ip_pipeline/config_parse.c @@ -1631,8 +1631,8 @@ parse_tm(struct app_params *app, param->file_name = strdup(ent->value); if (param->file_name == NULL) ret = -EINVAL; - - ret = 0; + else + ret = 0; } else if (strcmp(ent->name, "burst_read") == 0) ret = parser_read_uint32(¶m->burst_read, ent->value); -- 2.5.0