Commit 7d1983eb by Chris Young

stop readdir parsing crashing

parent 327fb51c
......@@ -482,9 +482,14 @@ int git_path_cmp(
/* Taken from git.git */
GIT_INLINE(int) is_dot_or_dotdot(const char *name)
{
#ifdef __amigaos4__
/* This is irrelevant on AmigaOS */
return 0;
#else
return (name[0] == '.' &&
(name[1] == '\0' ||
(name[1] == '.' && name[2] == '\0')));
#endif
}
int git_path_direach(
......@@ -512,7 +517,11 @@ int git_path_direach(
de_buf = git__malloc(sizeof(struct dirent));
#endif
#ifdef __amigaos4__
while (de = readdir(dir)) {
#else
while (p_readdir_r(dir, de_buf, de) == 0 && de != NULL) {
#endif
int result;
if (is_dot_or_dotdot(de->d_name))
......
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