core: replace readdir_r with readdir

This commit is contained in:
Florian Weimer 2013-12-19 11:25:08 +01:00 committed by Zbigniew Jędrzejewski-Szmek
parent 66c7a5332a
commit 9fa3006323

View file

@ -63,12 +63,13 @@ static int iterate_dir(
for (;;) {
struct dirent *de;
union dirent_storage buf;
_cleanup_free_ char *f = NULL;
int k;
k = readdir_r(d, &buf.de, &de);
if (k != 0) {
errno = 0;
de = readdir(d);
if (!de && errno != 0) {
k = errno;
log_error("Failed to read directory %s: %s", path, strerror(k));
return -k;
}