Re: [ovs-dev] [PATCH v2 18/26] ofp-util: Do not free() field that is not allocated.

2016-07-29 Thread Jarno Rajahalme
> On Jul 29, 2016, at 3:57 PM, Ben Pfaff wrote: > > On Thu, Jul 28, 2016 at 05:56:10PM -0700, Jarno Rajahalme wrote: >> Group properties field array is not dynamically allocated, so it >> should not be freed. This has not been a problem, as this function >> has not been called by

Re: [ovs-dev] [PATCH v2 18/26] ofp-util: Do not free() field that is not allocated.

2016-07-29 Thread Ben Pfaff
On Thu, Jul 28, 2016 at 05:56:10PM -0700, Jarno Rajahalme wrote: > Group properties field array is not dynamically allocated, so it > should not be freed. This has not been a problem, as this function > has not been called by anyone so far, but following patch will. > > Signed-off-by: Jarno

[ovs-dev] [PATCH v2 18/26] ofp-util: Do not free() field that is not allocated.

2016-07-28 Thread Jarno Rajahalme
Group properties field array is not dynamically allocated, so it should not be freed. This has not been a problem, as this function has not been called by anyone so far, but following patch will. Signed-off-by: Jarno Rajahalme --- lib/ofp-util.c | 1 - 1 file changed, 1