]> git.droids-corp.org - dpdk.git/commitdiff
examples/ip_pipeline: fix options array overflow
authorMarcin Kerlin <marcinx.kerlin@intel.com>
Thu, 14 Apr 2016 09:53:47 +0000 (11:53 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Mon, 16 May 2016 19:01:51 +0000 (21:01 +0200)
In the function app_init_eal(struct app params * app) number of
entries into array exceeds the size of the array if the conditions
are fulfilled.

Coverity issue: 124567
Fixes: 7f64b9c004aa ("examples/ip_pipeline: rework config file syntax")
Signed-off-by: Marcin Kerlin <marcinx.kerlin@intel.com>
Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
examples/ip_pipeline/app.h

index 55a9841775e0b9a8e22ddef47cee317d34cb0f99..e775024d864089f8fc2c224b0d894d7ff79fb7a1 100644 (file)
@@ -415,7 +415,7 @@ struct app_eal_params {
 #endif
 
 #ifndef APP_EAL_ARGC
-#define APP_EAL_ARGC                             32
+#define APP_EAL_ARGC                             64
 #endif
 
 #ifndef APP_MAX_PIPELINE_TYPES