Re: [PATCH] dma-buf: fix uninitialized variable usage in selftests

2021-10-25 Thread Nathan Chancellor
Hi Christian, On Mon, Oct 25, 2021 at 09:28:35AM +0200, Christian König wrote: > "i" can be used uninitialized in one of the error branches. Fix this. > > Signed-off-by: Christian König > Reported-by: kernel test robot > --- > drivers/dma-buf/st-dma-resv.c | 3 ++- > 1 file changed, 2 insertio

Re: [PATCH] dma-buf: fix uninitialized variable usage in selftests

2021-10-25 Thread Alex Deucher
On Mon, Oct 25, 2021 at 3:28 AM Christian König wrote: > > "i" can be used uninitialized in one of the error branches. Fix this. > > Signed-off-by: Christian König > Reported-by: kernel test robot Acked-by: Alex Deucher > --- > drivers/dma-buf/st-dma-resv.c | 3 ++- > 1 file changed, 2 inser

[PATCH] dma-buf: fix uninitialized variable usage in selftests

2021-10-25 Thread Christian König
"i" can be used uninitialized in one of the error branches. Fix this. Signed-off-by: Christian König Reported-by: kernel test robot --- drivers/dma-buf/st-dma-resv.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/dma-buf/st-dma-resv.c b/drivers/dma-buf/st-dma-resv