diff options
author | Nobuyoshi Nakada <[email protected]> | 2020-02-04 15:21:49 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2020-02-04 16:10:39 +0900 |
commit | 7d6903dc476f982e7b432adbeef3a3d9372a309f (patch) | |
tree | 3847e6cc91b7ca311fda9cd885a0bef908bf898a /load.c | |
parent | 9cdc964d075fc3d21b8ce8456ac88f57a5183ec0 (diff) |
Add the loaded feature after no exception raised
Retrying after rescued `require` should try to load the same
library again. [Bug #16607]
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/2879
Diffstat (limited to 'load.c')
-rw-r--r-- | load.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1014,7 +1014,6 @@ require_internal(rb_execution_context_t *ec, VALUE fname, int exception) result = 0; } else if (!*ftptr) { - rb_provide_feature(path); result = TAG_RETURN; } else { @@ -1029,7 +1028,6 @@ require_internal(rb_execution_context_t *ec, VALUE fname, int exception) rb_ary_push(ruby_dln_librefs, LONG2NUM(handle)); break; } - rb_provide_feature(path); result = TAG_RETURN; } } @@ -1063,6 +1061,7 @@ require_internal(rb_execution_context_t *ec, VALUE fname, int exception) rb_exc_raise(ec->errinfo); } + if (result == TAG_RETURN) rb_provide_feature(path); ec->errinfo = errinfo; RUBY_DTRACE_HOOK(REQUIRE_RETURN, RSTRING_PTR(fname)); |