From: Xavier Simonart Date: Wed, 9 Oct 2019 17:03:29 +0000 (+0200) Subject: Fix strncpy issue introduced by fb0c44a8 X-Git-Tag: opnfv-10.0.0~87 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F10%2F68610%2F1;p=samplevnf.git Fix strncpy issue introduced by fb0c44a8 Change-Id: I833d753bd5c426d50c0c9fdee5668f3b9fff13b9 Signed-off-by: Xavier Simonart --- diff --git a/VNFs/DPPD-PROX/cmd_parser.c b/VNFs/DPPD-PROX/cmd_parser.c index d4bfed01..dea955f4 100644 --- a/VNFs/DPPD-PROX/cmd_parser.c +++ b/VNFs/DPPD-PROX/cmd_parser.c @@ -2272,7 +2272,10 @@ static int parse_cmd_help(const char *str, struct input *input) len3 = max_len; } - prox_strncpy(tmp, h, len3); + // Use strncpy here and not prox_strncpy. The dest (tmp) has been initialized with 0. + // The fact that we are copying 80 characters potentially not null terminated is hence not an issue. + // Using prox_strncpy here might cause a PROX_PANIC + strncpy(tmp, h, len3); h += len3; while (h[0] == ' ' && strlen(h)) h++;