DPDK patches and discussions
 help / color / mirror / Atom feed
From: Fan Zhang <roy.fan.zhang@intel.com>
To: dev@dpdk.org
Subject: [dpdk-dev] [PATCH] example/ip_pipeline: fix config file parse defect
Date: Thu, 10 Dec 2015 12:19:19 +0000	[thread overview]
Message-ID: <1449749959-5063-1-git-send-email-roy.fan.zhang@intel.com> (raw)

Coverity issue: 120143
Fixes: 7f64b9c004aa ("examples/ip_pipeline: rework config file syntax")

Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com>
Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
---
 examples/ip_pipeline/config_parse.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/examples/ip_pipeline/config_parse.c b/examples/ip_pipeline/config_parse.c
index 6aaca11..c7d5efc 100644
--- a/examples/ip_pipeline/config_parse.c
+++ b/examples/ip_pipeline/config_parse.c
@@ -1930,7 +1930,11 @@ app_config_parse(struct app_params *app, const char *file_name)
 	APP_CHECK(cfg != NULL, "Unable to load config file %s", file_name);
 
 	sect_count = rte_cfgfile_num_sections(cfg, NULL, 0);
+	APP_CHECK(sect_count > 0, "Number of sections return %d", sect_count);
+
 	section_names = malloc(sect_count * sizeof(char *));
+	APP_CHECK(section_names != NULL, "Failed to allocate memory");
+
 	for (i = 0; i < sect_count; i++)
 		section_names[i] = malloc(CFG_NAME_LEN);
 
-- 
2.5.0

             reply	other threads:[~2015-12-10 12:19 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-12-10 12:19 Fan Zhang [this message]
2015-12-10 21:31 ` Thomas Monjalon

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1449749959-5063-1-git-send-email-roy.fan.zhang@intel.com \
    --to=roy.fan.zhang@intel.com \
    --cc=dev@dpdk.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).