зеркало из https://github.com/github/ruby.git
ruby.c: fd leak
* ruby.c (load_file_internal): fix potential fd leak. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52142 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
7a8a49d98a
Коммит
34b877e491
10
ruby.c
10
ruby.c
|
@ -1760,11 +1760,11 @@ load_file_internal(VALUE arg)
|
||||||
#if !defined DOSISH && !defined __CYGWIN__
|
#if !defined DOSISH && !defined __CYGWIN__
|
||||||
{
|
{
|
||||||
struct stat st;
|
struct stat st;
|
||||||
if (fstat(fd, &st) != 0)
|
int e;
|
||||||
rb_load_fail(fname_v, strerror(errno));
|
if ((fstat(fd, &st) != 0) && (e = errno, 1) ||
|
||||||
if (S_ISDIR(st.st_mode)) {
|
(S_ISDIR(st.st_mode) && (e = EISDIR, 1))) {
|
||||||
errno = EISDIR;
|
(void)close(fd);
|
||||||
rb_load_fail(fname_v, strerror(EISDIR));
|
rb_load_fail(fname_v, strerror(e));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Загрузка…
Ссылка в новой задаче