From f05023324c74bd12e66ac1dd04bbe2692c31dbfb Mon Sep 17 00:00:00 2001 From: Michael Haggerty Date: Mon, 6 Jan 2014 14:45:20 +0100 Subject: [PATCH] safe_create_leading_directories(): reduce scope of local variable This makes it more obvious that values of "st" don't persist across loop iterations. Signed-off-by: Michael Haggerty Signed-off-by: Junio C Hamano --- sha1_file.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sha1_file.c b/sha1_file.c index 56b51b03e..e52a0032e 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -108,9 +108,10 @@ int mkdir_in_gitdir(const char *path) int safe_create_leading_directories(char *path) { char *pos = path + offset_1st_component(path); - struct stat st; while (pos) { + struct stat st; + pos = strchr(pos, '/'); if (!pos) break; -- 2.11.0