io_uring/rsrc: always initialize 'folio' to NULL
authorJens Axboe <axboe@kernel.dk>
Fri, 24 Feb 2023 16:54:57 +0000 (09:54 -0700)
committerJens Axboe <axboe@kernel.dk>
Fri, 24 Feb 2023 19:58:31 +0000 (12:58 -0700)
commit977bc87356107fb946fb4ff24f1e4c241b5043ec
treef600ef39029c1c97b4f2aaadd749bab8d8affdb7
parent57bebf807e2abcf87d96b9de1266104ee2d8fc2f
io_uring/rsrc: always initialize 'folio' to NULL

Smatch complains that:

smatch warnings:
io_uring/rsrc.c:1262 io_sqe_buffer_register() error: uninitialized symbol 'folio'.

'folio' may be used uninitialized, which can happen if we end up with a
single page mapped. Ensure that we clear folio to NULL at the top so
it's always set.

Reported-by: kernel test robot <lkp@intel.com>
Reported-by: Dan Carpenter <error27@gmail.com>
Link: https://lore.kernel.org/r/202302241432.YML1CD5C-lkp@intel.com/
Signed-off-by: Jens Axboe <axboe@kernel.dk>
io_uring/rsrc.c