aboutsummaryrefslogtreecommitdiffstats
path: root/dir.c
diff options
context:
space:
mode:
Diffstat (limited to 'dir.c')
-rw-r--r--dir.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/dir.c b/dir.c
index 92b795fbf5..cf4daeecf1 100644
--- a/dir.c
+++ b/dir.c
@@ -2689,14 +2689,13 @@ rb_dir_s_empty_p(VALUE obj, VALUE dirname)
dir = opendir(path);
if (!dir) {
int e = errno;
- switch (e) {
- case EMFILE: case ENFILE:
- rb_gc();
+ switch (rb_gc_for_fd(e)) {
+ default:
dir = opendir(path);
if (dir) break;
e = errno;
/* fall through */
- default:
+ case 0:
if (false_on_notdir && e == ENOTDIR) return Qfalse;
rb_syserr_fail_path(e, orig);
}