@@ -509,7 +509,6 @@ impl FromRawFd for File {
509
509
510
510
pub fn readdir ( path : & Path ) -> io:: Result < ReadDir > {
511
511
let fd_raw = run_path_with_cstr ( path, |path| cvt ( unsafe { abi:: opendir ( path. as_ptr ( ) ) } ) ) ?;
512
- let fd = unsafe { FileDesc :: from_raw_fd ( fd_raw as i32 ) } ;
513
512
let root = path. to_path_buf ( ) ;
514
513
515
514
// read all director entries
@@ -519,17 +518,22 @@ pub fn readdir(path: &Path) -> io::Result<ReadDir> {
519
518
// reserve memory to receive all directory entries
520
519
vec. resize ( sz, 0 ) ;
521
520
522
- let readlen =
523
- unsafe { abi:: getdents64 ( fd. as_raw_fd ( ) , vec. as_mut_ptr ( ) as * mut dirent64 , sz) } ;
521
+ let readlen = unsafe { abi:: getdents64 ( fd_raw, vec. as_mut_ptr ( ) as * mut dirent64 , sz) } ;
524
522
if readlen > 0 {
525
523
// shrink down to the minimal size
526
524
vec. resize ( readlen. try_into ( ) . unwrap ( ) , 0 ) ;
525
+ unsafe {
526
+ abi:: close ( fd_raw) ;
527
+ }
527
528
break ;
528
529
}
529
530
530
531
// if the buffer is too small, getdents64 returns EINVAL
531
532
// otherwise, getdents64 returns an error number
532
533
if readlen != ( -abi:: errno:: EINVAL ) . into ( ) {
534
+ unsafe {
535
+ abi:: close ( fd_raw) ;
536
+ }
533
537
return Err ( Error :: from_raw_os_error ( readlen. try_into ( ) . unwrap ( ) ) ) ;
534
538
}
535
539
@@ -539,6 +543,9 @@ pub fn readdir(path: &Path) -> io::Result<ReadDir> {
539
543
// 1 MB for directory entries should be enough
540
544
// stop here to avoid an endless loop
541
545
if sz > 0x100000 {
546
+ unsafe {
547
+ abi:: close ( fd_raw) ;
548
+ }
542
549
return Err ( Error :: from ( ErrorKind :: Uncategorized ) ) ;
543
550
}
544
551
}
0 commit comments