diff options
author | Colin Ian King <colin.i.king@gmail.com> | 2023-07-27 18:01:17 +0300 |
---|---|---|
committer | Daniel Bristot de Oliveira <bristot@kernel.org> | 2023-10-30 21:00:12 +0300 |
commit | 696444a544ecd6d62c1edc89516b376cefb28929 (patch) | |
tree | b71e149b9fa8160c707aece6a8d2ef215388333a | |
parent | a0c04a3243f1db6cb47b04ba05b65af97f75a278 (diff) | |
download | linux-696444a544ecd6d62c1edc89516b376cefb28929.tar.xz |
rtla: Fix uninitialized variable found
Variable found is not being initialized, in the case where the desired
mount is not found the variable contains garbage. Fix this by initializing
it to zero.
Link: https://lore.kernel.org/all/20230727150117.627730-1-colin.i.king@gmail.com/
Fixes: a957cbc02531 ("rtla: Add -C cgroup support")
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Daniel Bristot de Oliveira <bristot@kernel.org>
-rw-r--r-- | tools/tracing/rtla/src/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/tracing/rtla/src/utils.c b/tools/tracing/rtla/src/utils.c index 623a38908ed5..c769d7b3842c 100644 --- a/tools/tracing/rtla/src/utils.c +++ b/tools/tracing/rtla/src/utils.c @@ -538,7 +538,7 @@ static const int find_mount(const char *fs, char *mp, int sizeof_mp) { char mount_point[MAX_PATH]; char type[100]; - int found; + int found = 0; FILE *fp; fp = fopen("/proc/mounts", "r"); |