From: Ben Pfaff Date: Wed, 18 Mar 2009 17:46:46 +0000 (-0700) Subject: secchan: Fix memory leak. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=16522475002a7953d8dbc410914320f23b47004f;p=openvswitch secchan: Fix memory leak. --- diff --git a/secchan/ofproto.c b/secchan/ofproto.c index 9525581e..c76ad3dc 100644 --- a/secchan/ofproto.c +++ b/secchan/ofproto.c @@ -1355,6 +1355,7 @@ static void rule_free(struct rule *rule) { free(rule->actions); + free(rule->odp_actions); free(rule); }