Re: [PATCH] libnvdimm: fix dereference on null devs on error exit path

2016-10-15 Thread Dan Williams
On Sat, Oct 15, 2016 at 8:32 AM, Colin King  wrote:
> From: Colin Ian King 
>
> If devs cannot be allocated then the error exit path jumps to
> a cleanup loop that iterates over a null array of devs which
> is incorrect.  Fix this by jumping instead to the end of the
> function where NULL is returned.
>
> Signed-off-by: Colin Ian King 

Thanks, I've already applied a similar fix from Dan Carpenter.


Re: [PATCH] libnvdimm: fix dereference on null devs on error exit path

2016-10-15 Thread Dan Williams
On Sat, Oct 15, 2016 at 8:32 AM, Colin King  wrote:
> From: Colin Ian King 
>
> If devs cannot be allocated then the error exit path jumps to
> a cleanup loop that iterates over a null array of devs which
> is incorrect.  Fix this by jumping instead to the end of the
> function where NULL is returned.
>
> Signed-off-by: Colin Ian King 

Thanks, I've already applied a similar fix from Dan Carpenter.