mirror of
https://github.com/ziglang/zig.git
synced 2025-12-16 03:03:09 +00:00
This fixes the use of multiple `Iterator`s in a row on a directory. Previously, on many platforms, using an `Iterator` on an already-iterated directory would give no entries. Fixing this involved seeking to the beginning of the directory on the first call of `next()`.