From 81bd65ff2d9b85e1ad0e33bdb317b7a0ec5cc85e Mon Sep 17 00:00:00 2001 From: Fan Zhang Date: Fri, 11 Dec 2015 11:29:06 +0000 Subject: [PATCH 1/1] examples/ip_pipeline: fix buffer size warning Coverity issue: 107102 Fixes: 7f64b9c004aa ("examples/ip_pipeline: rework config file syntax") Signed-off-by: Fan Zhang Acked-by: Cristian Dumitrescu Acked-by: John McNamara --- examples/ip_pipeline/config_parse_tm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/ip_pipeline/config_parse_tm.c b/examples/ip_pipeline/config_parse_tm.c index cdebbdc9f9..3932247517 100644 --- a/examples/ip_pipeline/config_parse_tm.c +++ b/examples/ip_pipeline/config_parse_tm.c @@ -349,7 +349,7 @@ tm_cfgfile_load_sched_subport( char *tokens[2] = {NULL, NULL}; int n_tokens; int begin, end; - char name[CFG_NAME_LEN]; + char name[CFG_NAME_LEN + 1]; profile = atoi(entries[j].value); strncpy(name, -- 2.20.1