diff options
| author | Rob Landley <rob@landley.net> | 2019-04-02 21:02:24 -0500 |
|---|---|---|
| committer | Rob Landley <rob@landley.net> | 2019-04-02 21:02:24 -0500 |
| commit | daff8901cc80dda766a8094ae9737eaeae232917 (patch) | |
| tree | fa973344c040b42f331763ac3e2a89593af8e8d2 | |
| parent | de71e746ae2571ce1892f472f8a8f1315b80f070 (diff) | |
| download | toybox-daff8901cc80dda766a8094ae9737eaeae232917.tar.gz | |
Yeah, ok, that one can get used uninitialized.
| -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 f7559b60..b7952039 100644 --- a/toys/pending/tar.c +++ b/toys/pending/tar.c @@ -357,7 +357,7 @@ static void extract_to_command(void) // Do pending directory utimes(), NULL to flush all. static int dirflush(char *name) { - char *s = s, *ss; + char *s = 0, *ss; // Barf if name not in TT.cwd if (name) { |
