summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--load.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/load.c b/load.c
index 13f3bf43e4..1304f1b900 100644
--- a/load.c
+++ b/load.c
@@ -966,22 +966,22 @@ rb_require_internal(VALUE fname, int safe)
int safe;
} volatile saved;
char *volatile ftptr = 0;
+ VALUE path;
RUBY_DTRACE_HOOK(REQUIRE_ENTRY, StringValuePtr(fname));
fname = rb_get_path_check(fname, safe);
+ path = rb_str_encode_ospath(fname);
TH_PUSH_TAG(th);
saved.safe = rb_safe_level();
if ((state = EXEC_TAG()) == 0) {
- VALUE path;
long handle;
int found;
rb_set_safe_level_force(0);
RUBY_DTRACE_HOOK(FIND_REQUIRE_ENTRY, StringValuePtr(fname));
- path = rb_str_encode_ospath(fname);
found = search_required(path, &path, safe);
RUBY_DTRACE_HOOK(FIND_REQUIRE_RETURN, StringValuePtr(fname));