]> Git Repo - linux.git/commitdiff
rv: Fix addition on an uninitialized variable 'run'
authorColin Ian King <[email protected]>
Mon, 24 Apr 2023 09:47:30 +0000 (10:47 +0100)
committerSteven Rostedt (Google) <[email protected]>
Tue, 25 Apr 2023 21:02:13 +0000 (17:02 -0400)
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/[email protected]
Fixes: 4bc4b131d44c ("rv: Add rv tool")
Signed-off-by: Colin Ian King <[email protected]>
Acked-by: Daniel Bristot de Oliveira <[email protected]>
Signed-off-by: Steven Rostedt (Google) <[email protected]>
tools/verification/rv/src/rv.c

index e601cd9c411e1964e9edd68bee65b5c9eae81c07..1ddb855328165f2ac11600da33bb96494eb202f7 100644 (file)
@@ -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[] = {
                "",
This page took 0.056322 seconds and 4 git commands to generate.