Skip to content

Commit 54a0dff

Browse files
ColinIanKingrostedt
authored andcommitted
rv: Fix addition on an uninitialized variable 'run'
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>
1 parent a99d0d5 commit 54a0dff

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • tools/verification/rv/src

tools/verification/rv/src/rv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ static void rv_list(int argc, char **argv)
7474
static void rv_mon(int argc, char **argv)
7575
{
7676
char *monitor_name;
77-
int i, run;
77+
int i, run = 0;
7878

7979
static const char *const usage[] = {
8080
"",

0 commit comments

Comments
 (0)