safe_create_leading_directories(): add explicit "slash" pointer

Keep track of the position of the slash character independently of
"pos", thereby making the purpose of each variable clearer and
working towards other upcoming changes.

Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Michael Haggerty 2014-01-06 14:45:21 +01:00 committed by Junio C Hamano
parent f05023324c
commit 831651fde8
1 changed files with 11 additions and 9 deletions

View File

@ -111,19 +111,21 @@ int safe_create_leading_directories(char *path)


while (pos) { while (pos) {
struct stat st; struct stat st;
char *slash = strchr(pos, '/');


pos = strchr(pos, '/'); if (!slash)
if (!pos)
break; break;
while (*++pos == '/') while (*(slash + 1) == '/')
; slash++;
pos = slash + 1;
if (!*pos) if (!*pos)
break; break;
*--pos = '\0';
*slash = '\0';
if (!stat(path, &st)) { if (!stat(path, &st)) {
/* path exists */ /* path exists */
if (!S_ISDIR(st.st_mode)) { if (!S_ISDIR(st.st_mode)) {
*pos = '/'; *slash = '/';
return -3; return -3;
} }
} else if (mkdir(path, 0777)) { } else if (mkdir(path, 0777)) {
@ -131,14 +133,14 @@ int safe_create_leading_directories(char *path)
!stat(path, &st) && S_ISDIR(st.st_mode)) { !stat(path, &st) && S_ISDIR(st.st_mode)) {
; /* somebody created it since we checked */ ; /* somebody created it since we checked */
} else { } else {
*pos = '/'; *slash = '/';
return -1; return -1;
} }
} else if (adjust_shared_perm(path)) { } else if (adjust_shared_perm(path)) {
*pos = '/'; *slash = '/';
return -2; return -2;
} }
*pos++ = '/'; *slash = '/';
} }
return 0; return 0;
} }