From: Tom Rix Date: Fri, 29 Apr 2022 21:38:01 +0000 (-0700) Subject: lib: remove back_str initialization X-Git-Tag: v6.1-rc5~1236^2~41 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d1bd5fa07667fcc3e38996ec42aef98761f23039;p=platform%2Fkernel%2Flinux-starfive.git lib: remove back_str initialization Clang static analysis reports this false positive glob.c:48:32: warning: Assigned value is garbage or undefined char const *back_pat = NULL, *back_str = back_str; ^~~~~~~~ ~~~~~~~~ back_str is set after back_pat and it's use is protected by the !back_pat check. It is not necessary to initialize back_str, so remove the initialization. Link: https://lkml.kernel.org/r/20220402131546.3383578-1-trix@redhat.com Signed-off-by: Tom Rix Reviewed-by: Nick Desaulniers Cc: Nathan Chancellor Signed-off-by: Andrew Morton --- diff --git a/lib/glob.c b/lib/glob.c index 85ecbda..15b73f49 100644 --- a/lib/glob.c +++ b/lib/glob.c @@ -45,7 +45,7 @@ bool __pure glob_match(char const *pat, char const *str) * (no exception for /), it can be easily proved that there's * never a need to backtrack multiple levels. */ - char const *back_pat = NULL, *back_str = back_str; + char const *back_pat = NULL, *back_str; /* * Loop over each token (character or class) in pat, matching