Re: [dpdk-dev] [PATCH] vhost: fix use after free

2017-04-18 Thread Yuanhan Liu
On Tue, Apr 18, 2017 at 10:20:41AM +0200, Maxime Coquelin wrote: > > > On 04/17/2017 09:27 AM, Yuanhan Liu wrote: > >A "return" is missing on error, which could lead to a "use after free" > >issue (about var "conn"). > > > >Fixes: 65388b43f592 ("vhost: fix fd leaks for vhost-user server mode") >

Re: [dpdk-dev] [PATCH] vhost: fix use after free

2017-04-18 Thread Maxime Coquelin
On 04/17/2017 09:27 AM, Yuanhan Liu wrote: A "return" is missing on error, which could lead to a "use after free" issue (about var "conn"). Fixes: 65388b43f592 ("vhost: fix fd leaks for vhost-user server mode") Coverity issue: 143476 Reported-by: John McNamara Signed-off-by: Yuanhan Liu ---