Re: [ovs-dev] [PATCH] ovn: Free default db befor exit.

2015-08-18 Thread Alex Wang
Thx, applied to master, On Tue, Aug 18, 2015 at 11:06 AM, Alex Wang wrote: > Acked-by: Alex Wang > > On Tue, Aug 18, 2015 at 8:24 AM, Russell Bryant > wrote: > >> The static result of default_db() was malloc'd but not freed before >> exit. Make the static result global and free it before exit

Re: [ovs-dev] [PATCH] ovn: Free default db befor exit.

2015-08-18 Thread Alex Wang
Acked-by: Alex Wang On Tue, Aug 18, 2015 at 8:24 AM, Russell Bryant wrote: > The static result of default_db() was malloc'd but not freed before > exit. Make the static result global and free it before exit. > > Signed-off-by: Russell Bryant > --- > ovn/northd/ovn-northd.c | 12

[ovs-dev] [PATCH] ovn: Free default db befor exit.

2015-08-18 Thread Russell Bryant
The static result of default_db() was malloc'd but not freed before exit. Make the static result global and free it before exit. Signed-off-by: Russell Bryant --- ovn/northd/ovn-northd.c | 12 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/ovn/northd/ovn-northd.c b/o