projects
/
openvswitch
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4f74752
)
secchan: Fix memory leak.
author
Ben Pfaff
<blp@nicira.com>
Wed, 18 Mar 2009 17:46:46 +0000
(10:46 -0700)
committer
Ben Pfaff
<blp@nicira.com>
Wed, 18 Mar 2009 17:46:46 +0000
(10:46 -0700)
secchan/ofproto.c
patch
|
blob
|
history
diff --git
a/secchan/ofproto.c
b/secchan/ofproto.c
index 9525581e64071b772160ee32a162fae1b19eb5f2..c76ad3dcdf8dc5605c93663e774a7ff4b3702af7 100644
(file)
--- 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);
}