aboutsummaryrefslogtreecommitdiffstats
path: root/internal.h
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-12-03 08:12:57 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-12-03 08:51:50 +0900
commit14a17063a11a01d518b4bbaf0eb967330aec3984 (patch)
tree5cc6a25e09b593f2bc5a66bef09b35f823075ebd /internal.h
parent8bddf1bc9bdd1db7ce2e3fec15f2f06ff355b0a7 (diff)
downloadruby-14a17063a11a01d518b4bbaf0eb967330aec3984.tar.gz
Fixed stack overflow [Bug #16382]
Get rid of infinite recursion in expanding a load path to the real path while loading a transcoder.
Diffstat (limited to 'internal.h')
-rw-r--r--internal.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/internal.h b/internal.h
index ca635c9e36..77101d0195 100644
--- a/internal.h
+++ b/internal.h
@@ -1583,7 +1583,9 @@ extern const char ruby_null_device[];
VALUE rb_home_dir_of(VALUE user, VALUE result);
VALUE rb_default_home_dir(VALUE result);
VALUE rb_realpath_internal(VALUE basedir, VALUE path, int strict);
-VALUE rb_check_realpath(VALUE basedir, VALUE path);
+#ifdef RUBY_ENCODING_H
+VALUE rb_check_realpath(VALUE basedir, VALUE path, rb_encoding *origenc);
+#endif
void rb_file_const(const char*, VALUE);
int rb_file_load_ok(const char *);
VALUE rb_file_expand_path_fast(VALUE, VALUE);