From daff8901cc80dda766a8094ae9737eaeae232917 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Tue, 2 Apr 2019 21:02:24 -0500 Subject: Yeah, ok, that one can get used uninitialized. --- toys/pending/tar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- cgit v1.2.3