1
0
mirror of https://github.com/mirror/make.git synced 2025-04-24 12:00:35 +08:00

Formerly dir.c.~12~

This commit is contained in:
Roland McGrath 1993-05-14 22:41:07 +00:00
parent bc0276c3cb
commit 03acd42408

4
dir.c
View File

@ -543,7 +543,9 @@ read_dirstream (stream)
if (!df->impossible)
return df->name;
}
ds->elt = ds->contents->files[++ds->bucket];
if (++ds->bucket == DIRFILE_BUCKETS)
break;
ds->elt = ds->contents->files[ds->bucket];
}
return 0;