Don't want anything wrongly marked as non-NULL slipping through.
p4raw-id: //depot/perl@33626
Perl_sv_insert(pTHX_ SV *const bigstr, const STRLEN offset, const STRLEN len,
const char *const little, const STRLEN littlelen)
{
+ PERL_ARGS_ASSERT_SV_INSERT;
sv_insert_flags(bigstr, offset, len, little, littlelen, SV_GMAGIC);
}
register I32 i;
STRLEN curlen;
- PERL_ARGS_ASSERT_SV_INSERT;
+ PERL_ARGS_ASSERT_SV_INSERT_FLAGS;
if (!bigstr)
Perl_croak(aTHX_ "Can't modify non-existent substring");