summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorRichard Leach <richardleach@users.noreply.github.com>2022-11-28 13:28:46 +0000
committerRichard Leach <richardleach@users.noreply.github.com>2022-11-30 00:45:02 +0000
commit54ca894738d71b8a053b5405699c66b8c0bd346d (patch)
treecfd73c82af0aeb53c5f048b73e64c05fd313b59d /toke.c
parenta91f26aeba97b32d0b4e53a62efa08351a1e8b6f (diff)
downloadperl-54ca894738d71b8a053b5405699c66b8c0bd346d.tar.gz
Replace SvGROW with sv_grow_fresh in perl.c, pp_sys.c, toke.c
Changed: * perl.c - Perl_moreswitches * pp_sys.c - pp_sysread * toke.c - Perl_scan_str In each of the above functions, one instance of SvGROW on a new SVt_PV can be swapped for the more efficient sv_grow_fresh. In two of the instances, the calls used to create the the SVt_PV have also been streamlined. There should not be any functional change as a result of this commit.
Diffstat (limited to 'toke.c')
-rw-r--r--toke.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toke.c b/toke.c
index edc2690934..7abc250a96 100644
--- a/toke.c
+++ b/toke.c
@@ -11488,7 +11488,7 @@ Perl_scan_str(pTHX_ char *start, int keep_bracketed_quoted, int keep_delims, int
/* create a new SV to hold the contents. 79 is the SV's initial length.
What a random number. */
sv = newSV_type(SVt_PVIV);
- SvGROW(sv, 79);
+ sv_grow_fresh(sv, 79);
SvIV_set(sv, close_delim_code);
(void)SvPOK_only(sv); /* validate pointer */