rx_fc_en and tx_fc_en in cmd_link_flow_ctrl_set_parsed could be used without being initialized.
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch at intel.com> --- app/test-pmd/cmdline.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c index b2aab40..d52ba89 100644 --- a/app/test-pmd/cmdline.c +++ b/app/test-pmd/cmdline.c @@ -5117,7 +5117,7 @@ cmd_link_flow_ctrl_set_parsed(void *parsed_result, struct cmd_link_flow_ctrl_set_result *res = parsed_result; cmdline_parse_inst_t *cmd = data; struct rte_eth_fc_conf fc_conf; - int rx_fc_en, tx_fc_en; + int rx_fc_en, tx_fc_en = 0; int ret; /* -- 1.7.4.1