From: Marcin Kerlin Date: Fri, 8 Apr 2016 13:32:24 +0000 (+0200) Subject: examples/ip_pipeline: fix size of allocated memory X-Git-Tag: spdx-start~7027 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=662c54e668a39d58575c9a5197d1d1b78325f0f2;p=dpdk.git examples/ip_pipeline: fix size of allocated memory CID 120150: Wrong size of the allocated memory. Passing argument as size of pointer (8UL) instead of size of structure app_pipeline_firewall_rule. Fixes: 67ebdbef0c31 ("examples/ip_pipeline: add bulk update of firewall rules") Signed-off-by: Marcin Kerlin --- diff --git a/examples/ip_pipeline/pipeline/pipeline_firewall.c b/examples/ip_pipeline/pipeline/pipeline_firewall.c index 320b25d462..fd897d5c6b 100644 --- a/examples/ip_pipeline/pipeline/pipeline_firewall.c +++ b/examples/ip_pipeline/pipeline/pipeline_firewall.c @@ -834,7 +834,7 @@ app_pipeline_firewall_add_bulk(struct app_params *app, rules[i] = app_pipeline_firewall_rule_find(p, &keys[i]); new_rules[i] = (rules[i] == NULL); if (rules[i] == NULL) { - rules[i] = rte_malloc(NULL, sizeof(rules[i]), + rules[i] = rte_malloc(NULL, sizeof(*rules[i]), RTE_CACHE_LINE_SIZE); if (rules[i] == NULL) {