diff options
author | Anand B Jyoti <anand.b.jyoti@intel.com> | 2017-10-04 10:15:40 +0530 |
---|---|---|
committer | Deepak S <deepak.s@linux.intel.com> | 2017-10-06 17:41:15 -0700 |
commit | cd3527b101c97a66d02069a0d60c4e53b4a7d863 (patch) | |
tree | e9accecdae16f114058776eaeed7a1346dd3ca85 /VNFs/vFW/pipeline | |
parent | 606074373da5534e476a41b14463d0ec67fdb8d7 (diff) |
VNFs: Fixing klocwork issue in VNFs code
JIRA: SAMPLEVNF-83
This patch fixes the klocwork reported issues
Change-Id: I190d024777be1bf53cdc97feca1e5934781f3582
Signed-off-by: Anand B Jyoti <anand.b.jyoti@intel.com>
Diffstat (limited to 'VNFs/vFW/pipeline')
-rw-r--r-- | VNFs/vFW/pipeline/pipeline_vfw_be.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/VNFs/vFW/pipeline/pipeline_vfw_be.c b/VNFs/vFW/pipeline/pipeline_vfw_be.c index f0eab34b..71fd5cde 100644 --- a/VNFs/vFW/pipeline/pipeline_vfw_be.c +++ b/VNFs/vFW/pipeline/pipeline_vfw_be.c @@ -1969,7 +1969,7 @@ pipeline_vfw_parse_args(struct pipeline_vfw *vfw_pipe, if (strcmp(arg_name, "n_flows") == 0) { int n_flows = atoi(arg_value); - if (n_flows == 0) + if ((n_flows == 0) || (n_flows > 8000000)) return -1; /* must be power of 2, round up if not */ |