Re: [ovs-dev] [PATCH] ovsdb-idl: Fix memory leak in ovsdb_idl_condition_add_clause().

2016-08-15 Thread Ben Pfaff
On Mon, Aug 15, 2016 at 03:08:04PM -0400, Flaviof wrote: > On Sat, Aug 13, 2016 at 7:58 PM, Ben Pfaff wrote: > > > The function always allocated a clause but didn't use it if it was > > going to be a duplicate. > > > > Signed-off-by: Ben Pfaff > > > > Acked-by: Flavio Fernandes Thanks, applie

Re: [ovs-dev] [PATCH] ovsdb-idl: Fix memory leak in ovsdb_idl_condition_add_clause().

2016-08-15 Thread Flaviof
On Sat, Aug 13, 2016 at 7:58 PM, Ben Pfaff wrote: > The function always allocated a clause but didn't use it if it was > going to be a duplicate. > > Signed-off-by: Ben Pfaff > Acked-by: Flavio Fernandes > --- > lib/ovsdb-idl.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > di

[ovs-dev] [PATCH] ovsdb-idl: Fix memory leak in ovsdb_idl_condition_add_clause().

2016-08-13 Thread Ben Pfaff
The function always allocated a clause but didn't use it if it was going to be a duplicate. Signed-off-by: Ben Pfaff --- lib/ovsdb-idl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ovsdb-idl.c b/lib/ovsdb-idl.c index ad0d1e1..7d3d328 100644 --- a/lib/ovsdb-idl.c +++ b