Prevent _dirent_loose_load() from choking on empty folders

This commit is contained in:
nulltoken 2011-03-03 19:36:54 +02:00 committed by Vicent Marti
parent e4029c5201
commit 0594e3efb7

View File

@ -537,7 +537,7 @@ static int _dirent_loose_load(void *data, char *full_path)
int error;
if (gitfo_isdir(full_path) == GIT_SUCCESS)
gitfo_dirent(full_path, GIT_PATH_MAX, _dirent_loose_load, repository);
return gitfo_dirent(full_path, GIT_PATH_MAX, _dirent_loose_load, repository);
file_path = full_path + strlen(repository->path_repository);
error = loose_lookup(&reference, repository, file_path, 1);