Skip to content

we aren't going to run late INIT blocks, so don't save them #23219

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: blead
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions op.c
Original file line number Diff line number Diff line change
Expand Up @@ -11716,11 +11716,17 @@ S_process_special_blocks(pTHX_ I32 floor, const char *const fullname,

}
#endif
if (PL_main_start)
if (PL_main_start) {
/* diag_listed_as: Too late to run %s block */
ck_warner(packWARN(WARN_VOID),
"Too late to run INIT block");
Perl_av_create_and_push(aTHX_ &PL_initav, MUTABLE_SV(cv));
/* callers may touch cv after we return so don't
just release it.
*/
SAVEFREESV(cv);
}
else
Perl_av_create_and_push(aTHX_ &PL_initav, MUTABLE_SV(cv));
}
else
return FALSE;
Expand Down
Loading