From fa03bb9e323a24cb61f9012c01c75a644917eefa Mon Sep 17 00:00:00 2001 From: Simon Horman Date: Fri, 31 Oct 2014 17:14:47 +0900 Subject: [PATCH] ofp-print-ofctl: Free group buckets. Found by inspection using make check-valgrind. Signed-off-by: Simon Horman Signed-off-by: Ben Pfaff --- lib/ofp-print.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/ofp-print.c b/lib/ofp-print.c index 43bfa172b..8dc7f0654 100644 --- a/lib/ofp-print.c +++ b/lib/ofp-print.c @@ -2167,6 +2167,7 @@ ofp_print_group_desc(struct ds *s, const struct ofp_header *oh) ds_put_char(s, '\n'); ds_put_char(s, ' '); ofp_print_group(s, gd.group_id, gd.type, &gd.buckets); + ofputil_bucket_list_destroy(&gd.buckets); } } @@ -2303,6 +2304,7 @@ ofp_print_group_mod(struct ds *s, const struct ofp_header *oh) ds_put_char(s, ' '); ofp_print_group(s, gm.group_id, gm.type, &gm.buckets); + ofputil_bucket_list_destroy(&gm.buckets); } static void