We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb2a0d6 commit 8dec03bCopy full SHA for 8dec03b
src/libstd/sys/unix/fs.rs
@@ -229,7 +229,7 @@ impl Iterator for ReadDir {
229
// is safe to use in threaded applications and it is generally preferred
230
// over the readdir_r(3C) function.
231
super::os::set_errno(0);
232
- let entry_ptr = libc::readdir(self.dirp.0);
+ let entry_ptr = libc::readdir(self.0.dirp.0);
233
if entry_ptr.is_null() {
234
// NULL can mean either the end is reached or an error occurred.
235
// So we had to clear errno beforehand to check for an error now.
0 commit comments