Skip to content

Commit

Permalink
ofproto-dpif-governor: Fix small memory leak.
Browse files Browse the repository at this point in the history
Signed-off-by: Ben Pfaff <[email protected]>
Acked-by: Ethan Jackson <[email protected]>
  • Loading branch information
blp committed Jan 9, 2013
1 parent 3bdc692 commit 889f08e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ofproto/ofproto-dpif-governor.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ governor_destroy(struct governor *g)
{
if (g) {
VLOG_INFO("%s: disengaging", g->name);
free(g->name);
free(g->table);
free(g);
}
Expand Down

0 comments on commit 889f08e

Please sign in to comment.