"dev" <[email protected]> wrote on 04/05/2016 04:24:17 PM:
> From: Russell Bryant <[email protected]> > To: [email protected] > Date: 04/05/2016 04:24 PM > Subject: [ovs-dev] [PATCH 1/3] ovn-controller: Add missing shash_destroy (). > Sent by: "dev" <[email protected]> > > expr_symtab_destroy() destroys the contents of the symtab shash, but not > the shash itself. Add a missing shash_destroy() call in > lflow_destroy(). > > Signed-off-by: Russell Bryant <[email protected]> > --- > ovn/controller/lflow.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/ovn/controller/lflow.c b/ovn/controller/lflow.c > index bcad318..7a3466f 100644 > --- a/ovn/controller/lflow.c > +++ b/ovn/controller/lflow.c > @@ -443,4 +443,5 @@ void > lflow_destroy(void) > { > expr_symtab_destroy(&symtab); > + shash_destroy(&symtab); > } > -- > 2.5.5 This is simple enough... so Acked-by: Ryan Moats <[email protected]> Tested-by: Ryan Moats <[email protected]> _______________________________________________ dev mailing list [email protected] http://openvswitch.org/mailman/listinfo/dev
