From a7ca2803bc0d32ddda9c1ed12391428c88d7aac3 Mon Sep 17 00:00:00 2001 From: Justin Pettit Date: Thu, 22 Oct 2015 00:08:15 -0700 Subject: [PATCH] ovsdb: Destroy allocated hmap. Signed-off-by: Justin Pettit Acked-by: Andy Zhou --- ovsdb/monitor.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ovsdb/monitor.c b/ovsdb/monitor.c index 8a64fc1e2..a6e25c94c 100644 --- a/ovsdb/monitor.c +++ b/ovsdb/monitor.c @@ -990,6 +990,7 @@ ovsdb_monitor_destroy(struct ovsdb_monitor *dbmon) hmap_remove(&mt->changes, &changes->hmap_node); ovsdb_monitor_changes_destroy(changes); } + hmap_destroy(&mt->changes); free(mt->columns); free(mt); } -- 2.20.1