From d25b341aa8ce7062a0995adfe1a8e4321c10a727 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Mon, 10 May 2010 10:55:29 -0700 Subject: [PATCH] bridge: Fix double-free bug in port_reconfigure(). Reported-by: Peter Balland Bug #2794 --- vswitchd/bridge.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index e20d4073..74c7d578 100644 --- a/vswitchd/bridge.c +++ b/vswitchd/bridge.c @@ -3391,8 +3391,6 @@ port_reconfigure(struct port *port, const struct ovsrec_port *cfg) } bitmap_free(port->trunks); port->trunks = trunks; - - shash_destroy(&new_ifaces); } static void -- 2.30.2