From 71fa79692e3177e186cb2c3082a686d4197e58f4 Mon Sep 17 00:00:00 2001 From: Simon Horman Date: Fri, 31 Oct 2014 17:14:47 +0900 Subject: 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 e14bd6eac..6e6195b2b 100644 --- a/lib/ofp-print.c +++ b/lib/ofp-print.c @@ -2360,6 +2360,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); } } @@ -2500,6 +2501,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 -- cgit v1.2.1