summaryrefslogtreecommitdiff
path: root/load.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <[email protected]>2021-06-14 13:49:10 +0900
committerNobuyoshi Nakada <[email protected]>2021-06-14 14:09:43 +0900
commitf0f9e77b65990001bd2acb42e1c6b673f6324425 ()
tree44e76aaa38ad3e2bb59fd232b9fee3e146878fff /load.c
parent2792acc8f29c6ee1d04b57b7b70d43519a0ceda8 (diff)
Suppress gcc11 clobbered warning
-rw-r--r--load.c4
1 files changed, 3 insertions, 1 deletions
@@ -1047,10 +1047,12 @@ require_internal(rb_execution_context_t *ec, VALUE fname, int exception)
if ((state = EC_EXEC_TAG()) == TAG_NONE) {
long handle;
int found;
RUBY_DTRACE_HOOK(FIND_REQUIRE_ENTRY, RSTRING_PTR(fname));
- found = search_required(path, &path, rb_feature_p);
RUBY_DTRACE_HOOK(FIND_REQUIRE_RETURN, RSTRING_PTR(fname));
if (found) {
if (!path || !(ftptr = load_lock(RSTRING_PTR(path)))) {