From 4d859fa9821c79992d49932a599760f0b334d106 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Fri, 17 Aug 2012 13:59:46 -0700 Subject: [PATCH] ovs-ofctl: Fix memory leak in "check-vlan" test command. Found by valgrind. Signed-off-by: Ben Pfaff --- utilities/ovs-ofctl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/utilities/ovs-ofctl.c b/utilities/ovs-ofctl.c index dd5f4ba1f..622e32f3b 100644 --- a/utilities/ovs-ofctl.c +++ b/utilities/ovs-ofctl.c @@ -2615,6 +2615,7 @@ ofctl_check_vlan(int argc OVS_UNUSED, char *argv[]) printf("%04"PRIx16"/%04"PRIx16"\n", ntohs(fm.cr.flow.vlan_tci), ntohs(fm.cr.wc.vlan_tci_mask)); + free(string_s); /* Convert to and from NXM. */ ofpbuf_init(&nxm, 0); -- 2.43.0