Skip to content

Commit

Permalink
rv: Fix addition on an uninitialized variable 'run'
Browse files Browse the repository at this point in the history
[ Upstream commit 54a0dff ]

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: 4bc4b13 ("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>
  • Loading branch information
ColinIanKing authored and gregkh committed May 11, 2023
1 parent b35286f commit f35cf01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/verification/rv/src/rv.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ static void rv_list(int argc, char **argv)
static void rv_mon(int argc, char **argv)
{
char *monitor_name;
int i, run;
int i, run = 0;

static const char *const usage[] = {
"",
Expand Down

0 comments on commit f35cf01

Please sign in to comment.