]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
fstrim: initialize path variable
authorSami Kerola <kerolasa@iki.fi>
Sun, 26 Oct 2014 22:07:07 +0000 (22:07 +0000)
committerKarel Zak <kzak@redhat.com>
Fri, 31 Oct 2014 09:38:58 +0000 (10:38 +0100)
Reading the code this initialization is not necessary, so the change is
mostly about silencing a compiler warning and ensuring the program keeps
on working if there is a future bug that could make uninitialized 'path'
reachable to use.

sys-utils/fstrim.c:247: warning: 'path' may be used uninitialized in this
function

Signed-off-by: Sami Kerola <kerolasa@iki.fi>
sys-utils/fstrim.c

index 481a4cb0c24f4ebb9ae94a3cec02e05572f14630..b18cdb263c57686d921d04891814481cc971a0a3 100644 (file)
@@ -244,7 +244,7 @@ static void __attribute__((__noreturn__)) usage(FILE *out)
 
 int main(int argc, char **argv)
 {
-       char *path;
+       char *path = NULL;
        int c, rc, verbose = 0, all = 0;
        struct fstrim_range range;