aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Pettit <jpettit@nicira.com>2015-10-21 23:58:10 -0700
committerJustin Pettit <jpettit@nicira.com>2015-10-22 18:00:16 -0700
commitd557df9661aed63887cadb3a5106ad43f19b311b (patch)
treea5da65fc901b1348792ec47bc925ababd36e1363
parentcc1f52101040954e563c038a915e098c7b91d671 (diff)
ovsdb-server: Destroy allocated shash.
Signed-off-by: Justin Pettit <jpettit@nicira.com> Acked-by: Andy Zhou <azhou@nicira.com>
-rw-r--r--ovsdb/ovsdb-server.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ovsdb/ovsdb-server.c b/ovsdb/ovsdb-server.c
index 0c34820de..97b65b658 100644
--- a/ovsdb/ovsdb-server.c
+++ b/ovsdb/ovsdb-server.c
@@ -337,6 +337,7 @@ main(int argc, char *argv[])
close_db(db);
shash_delete(&all_dbs, node);
}
+ shash_destroy(&all_dbs);
sset_destroy(&remotes);
sset_destroy(&db_filenames);
unixctl_server_destroy(unixctl);