summaryrefslogtreecommitdiff
path: root/pp_sys.c
diff options
context:
space:
mode:
Diffstat (limited to 'pp_sys.c')
-rw-r--r--pp_sys.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/pp_sys.c b/pp_sys.c
index 6142fcb7d5..aac1227f58 100644
--- a/pp_sys.c
+++ b/pp_sys.c
@@ -1247,6 +1247,8 @@ S_doform(pTHX_ CV *cv, GV *gv, OP *retop)
register PERL_CONTEXT *cx;
const I32 gimme = GIMME_V;
+ PERL_ARGS_ASSERT_DOFORM;
+
ENTER;
SAVETMPS;
@@ -3605,6 +3607,8 @@ S_dooneliner(pTHX_ const char *cmd, const char *filename)
int anum = 1;
Size_t size = strlen(cmd) + (strlen(filename) * 2) + 10;
+ PERL_ARGS_ASSERT_DOONELINER;
+
Newx(cmdline, size, char);
my_strlcpy(cmdline, cmd, size);
my_strlcat(cmdline, " ", size);
@@ -4612,6 +4616,8 @@ S_space_join_names_mortal(pTHX_ char *const *array)
{
SV *target;
+ PERL_ARGS_ASSERT_SPACE_JOIN_NAMES_MORTAL;
+
if (array && *array) {
target = newSVpvs_flags("", SVs_TEMP);
while (1) {