Commit a993e4fe by Romain Geissler

Fileops: Fixed gitfo_mkdir_recurs so that it proprely works with a path without trailing slash.

It used to discard the last directory if the path didn't have a trailing slash.
parent f2a60854
......@@ -380,7 +380,7 @@ int gitfo_mkdir_recurs(const char *path, int mode)
if (root_path_offset > 0)
pp += root_path_offset; /* On Windows, will skip the drive name (eg. C: or D:) */
while (error == GIT_SUCCESS && (sp = strchr(pp, '/')) != 0) {
while (error == GIT_SUCCESS && (sp = strchr(pp, '/')) != NULL) {
if (sp != pp && gitfo_isdir(path_copy) < GIT_SUCCESS) {
*sp = 0;
error = gitfo_mkdir(path_copy, mode);
......@@ -395,8 +395,11 @@ int gitfo_mkdir_recurs(const char *path, int mode)
pp = sp + 1;
}
if (*(pp - 1) != '/' && error == GIT_SUCCESS)
if (*pp != '\0' && error == GIT_SUCCESS) {
error = gitfo_mkdir(path, mode);
if (errno == EEXIST)
error = GIT_SUCCESS;
}
free(path_copy);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment