We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 871e680 commit 9e31471Copy full SHA for 9e31471
pp_ctl.c
@@ -4319,11 +4319,6 @@ S_require_file(pTHX_ SV *sv)
4319
SvGETMAGIC(loader);
4320
}
4321
4322
- Perl_sv_setpvf(aTHX_ namesv, "/loader/0x%" UVxf "/%s",
4323
- diruv, name);
4324
- tryname = SvPVX_const(namesv);
4325
- tryrsfp = NULL;
4326
-
4327
if (SvPADTMP(nsv)) {
4328
nsv = sv_newmortal();
4329
SvSetSV_nosteal(nsv,sv);
@@ -4370,6 +4365,11 @@ S_require_file(pTHX_ SV *sv)
4370
4365
4371
4366
4372
4367
4368
+ Perl_sv_setpvf(aTHX_ namesv, "/loader/0x%" UVxf "/%s",
4369
+ diruv, name);
+ tryname = SvPVX_const(namesv);
+ tryrsfp = NULL;
+
4373
ENTER_with_name("call_INC_hook");
4374
SAVETMPS;
4375
EXTEND(SP, 2 + ((method && (loader != dirsv)) ? 1 : 0));
0 commit comments