summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dir.c10
-rw-r--r--io.c16
2 files changed, 15 insertions, 11 deletions
diff --git a/dir.c b/dir.c
index 90fc1efed9..737470c4bc 100644
--- a/dir.c
+++ b/dir.c
@@ -526,11 +526,12 @@ dir_initialize(int argc, VALUE *argv, VALUE dir)
path = RSTRING_PTR(dirname);
dp->dir = opendir(path);
if (dp->dir == NULL) {
- if (rb_gc_for_fd(errno)) {
+ int e = errno;
+ if (rb_gc_for_fd(e)) {
dp->dir = opendir(path);
}
#ifdef HAVE_GETATTRLIST
- else if (errno == EIO) {
+ else if (e == EIO) {
u_int32_t attrbuf[1];
struct attrlist al = {ATTR_BIT_MAP_COUNT, 0};
if (getattrlist(path, &al, attrbuf, sizeof(attrbuf), FSOPT_NOFOLLOW) == 0) {
@@ -540,7 +541,7 @@ dir_initialize(int argc, VALUE *argv, VALUE dir)
#endif
if (dp->dir == NULL) {
RB_GC_GUARD(dirname);
- rb_sys_fail_path(orig);
+ rb_syserr_fail_path(e, orig);
}
}
dp->path = orig;
@@ -752,7 +753,8 @@ dir_read(VALUE dir)
return rb_external_str_new_with_enc(dp->d_name, NAMLEN(dp), dirp->enc);
}
else {
- if (errno != 0) rb_sys_fail(0);
+ int e = errno;
+ if (e != 0) rb_syserr_fail(e, 0);
return Qnil; /* end of stream */
}
}
diff --git a/io.c b/io.c
index cba9318590..8fc0ca9247 100644
--- a/io.c
+++ b/io.c
@@ -889,11 +889,12 @@ ruby_dup(int orig)
fd = rb_cloexec_dup(orig);
if (fd < 0) {
- if (rb_gc_for_fd(errno)) {
+ int e = errno;
+ if (rb_gc_for_fd(e)) {
fd = rb_cloexec_dup(orig);
}
if (fd < 0) {
- rb_sys_fail(0);
+ rb_syserr_fail(e, 0);
}
}
rb_update_max_fd(fd);
@@ -5468,11 +5469,12 @@ rb_sysopen(VALUE fname, int oflags, mode_t perm)
fd = rb_sysopen_internal(&data);
if (fd < 0) {
- if (rb_gc_for_fd(errno)) {
+ int e = errno;
+ if (rb_gc_for_fd(e)) {
fd = rb_sysopen_internal(&data);
}
if (fd < 0) {
- rb_sys_fail_path(fname);
+ rb_syserr_fail_path(e, fname);
}
}
return fd;
@@ -5488,19 +5490,19 @@ rb_fdopen(int fd, const char *modestr)
#endif
file = fdopen(fd, modestr);
if (!file) {
+ int e = errno;
#if defined(__sun)
- if (errno == 0) {
+ if (e == 0) {
rb_gc();
errno = 0;
file = fdopen(fd, modestr);
}
else
#endif
- if (rb_gc_for_fd(errno)) {
+ if (rb_gc_for_fd(e)) {
file = fdopen(fd, modestr);
}
if (!file) {
- int e = errno;
#ifdef _WIN32
if (e == 0) e = EINVAL;
#elif defined(__sun)