diff options
author | Rob Landley <rob@landley.net> | 2019-03-27 21:39:32 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2019-03-27 21:39:32 -0500 |
commit | 205b9e243ecab728886b35712546cd8928488796 (patch) | |
tree | e888970d492f77422ffd8f98bfc7f00455c3197b /toys | |
parent | 865af873652475a444c74501c91638aa1810bb03 (diff) | |
download | toybox-205b9e243ecab728886b35712546cd8928488796.tar.gz |
Silence another broken gcc "tar is never used uninitialized" warning.
Diffstat (limited to 'toys')
-rw-r--r-- | toys/pending/tar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/pending/tar.c b/toys/pending/tar.c index ea57b7a6..97524d87 100644 --- a/toys/pending/tar.c +++ b/toys/pending/tar.c @@ -340,7 +340,7 @@ static void extract_to_command(void) // Do pending directory utimes(), NULL to flush all. static int dirflush(char *name) { - char *s, *ss; + char *s = s, *ss; // Barf if name not in TT.cwd if (name) { |