Acked, with same comment as Ying. ///jon
> -----Original Message----- > From: Tommi Rantala [mailto:[email protected]] > Sent: Thursday, December 21, 2017 03:13 > To: [email protected]; Jon Maloy > <[email protected]> > Cc: Tommi Rantala <[email protected]> > Subject: [PATCH 1/2] tipc: fix memory leak in tipc_enable_bearer() if > enable_media() fails > > Fix error path memory leak in tipc_enable_bearer(). > > Signed-off-by: Tommi Rantala <[email protected]> > --- > net/tipc/bearer.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/net/tipc/bearer.c b/net/tipc/bearer.c index > 47ec121574ce..f3c65e1ec537 100644 > --- a/net/tipc/bearer.c > +++ b/net/tipc/bearer.c > @@ -324,6 +324,7 @@ static int tipc_enable_bearer(struct net *net, const > char *name, > if (res) { > pr_warn("Bearer <%s> rejected, enable failure (%d)\n", > name, -res); > + kfree(b); > return -EINVAL; > } > > -- > 2.14.3 ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot _______________________________________________ tipc-discussion mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/tipc-discussion
