On 29/05/2019 13:43, Reshma Pattan wrote:
Free the `values` pointer before returning from rte_telemetry_command_ports_all_stat_values() to avoid memory leak.Fixes: c12cefa379 ("telemetry: fix mapping of statistics") CC: [email protected] CC: [email protected] Signed-off-by: Reshma Pattan <[email protected]> --- lib/librte_telemetry/rte_telemetry_parser.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_telemetry/rte_telemetry_parser.c b/lib/librte_telemetry/rte_telemetry_parser.c index 9bc16eef4..e9297021a 100644 --- a/lib/librte_telemetry/rte_telemetry_parser.c +++ b/lib/librte_telemetry/rte_telemetry_parser.c @@ -342,6 +342,7 @@ rte_telemetry_command_ports_all_stat_values(struct telemetry_impl *telemetry, goto fail; }+ free(values);return 0;fail:
Acked-by: Kevin Laatz <[email protected]>

