From: Justin Pettit Date: Thu, 22 Oct 2015 06:58:10 +0000 (-0700) Subject: ovsdb-server: Destroy allocated shash. X-Git-Tag: v2.5.0~383 X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Fovs.git;a=commitdiff_plain;h=d557df9661aed63887cadb3a5106ad43f19b311b ovsdb-server: Destroy allocated shash. Signed-off-by: Justin Pettit Acked-by: Andy Zhou --- 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);