]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
rv: Fix addition on an uninitialized variable 'run'
authorColin Ian King <colin.i.king@gmail.com>
Mon, 24 Apr 2023 09:47:30 +0000 (10:47 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 11 May 2023 14:11:25 +0000 (23:11 +0900)
commit3ab85b0dccc3e18ad9c059b89f5b3f37bb52889a
tree6706cd3c2be44ac6261419b1990d3a53735db656
parenta35b553e28923ce867afd84e875b7cbc35566359
rv: Fix addition on an uninitialized variable 'run'

[ Upstream commit 54a0dffa62de0c91b406ff32082a121ccfa0d7f1 ]

The variable run is not initialized however it is being accumulated
by the return value from the call to ikm_run_monitor.  Fix this by
initializing run to zero at the start of the function.

Link: https://lkml.kernel.org/r/20230424094730.105313-1-colin.i.king@gmail.com
Fixes: 4bc4b131d44c ("rv: Add rv tool")
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Acked-by: Daniel Bristot de Oliveira <bristot@kernel.org>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
tools/verification/rv/src/rv.c