Thanks, applied and backported.
On Mon, Aug 27, 2018 at 03:57:04PM -0700, Yifeng Sun wrote: > Looks good to me, thanks for the fix. > > Reviewed-by: Yifeng Sun <[email protected]> > > On Fri, Aug 24, 2018 at 2:50 PM Ben Pfaff <[email protected]> wrote: > > > Reported-at: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9966 > > Reported-at > > <https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9966Reported-at>: > > https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9968 > > Fixes: f1eb32b9641c ("ofp-group: Fix memory leak in error cases parsing > > group requests.") > > Signed-off-by: Ben Pfaff <[email protected]> > > --- > > lib/nx-match.c | 1 + > > 1 file changed, 1 insertion(+) > > > > diff --git a/lib/nx-match.c b/lib/nx-match.c > > index 3b030833cb2c..8f98032195af 100644 > > --- a/lib/nx-match.c > > +++ b/lib/nx-match.c > > @@ -763,6 +763,7 @@ oxm_pull_field_array(const void *fields_data, size_t > > fields_len, > > ofperr_to_string(error)); > > > > free(fa->values); > > + fa->values = NULL; > > return error; > > } > > } > > -- > > 2.16.1 > > > > _______________________________________________ > > dev mailing list > > [email protected] > > https://mail.openvswitch.org/mailman/listinfo/ovs-dev > > _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
