From 14a17063a11a01d518b4bbaf0eb967330aec3984 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Tue, 3 Dec 2019 08:12:57 +0900 Subject: Fixed stack overflow [Bug #16382] Get rid of infinite recursion in expanding a load path to the real path while loading a transcoder. --- internal.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'internal.h') 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); -- cgit v1.2.1