summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorIlya Zakharevich <ilya@math.berkeley.edu>1998-06-22 00:19:45 -0400
committerGurusamy Sarathy <gsar@cpan.org>1998-06-23 06:06:23 +0000
commit8d6dde3e637be6ce74eec8ca77c5be73d19f769a (patch)
treeeb37e8ea49be3485b48a74821f527ac1fde1a018 /toke.c
parent276493cb78ba879defeed992c4543a6fe30f98ce (diff)
downloadperl-8d6dde3e637be6ce74eec8ca77c5be73d19f769a.tar.gz
applied patch, regen headers
Message-Id: <199806220819.EAA03295@monk.mps.ohio-state.edu> Subject: [PATCH 5.004_67] Malloc size feedback p4raw-id: //depot/perl@1201
Diffstat (limited to 'toke.c')
-rw-r--r--toke.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/toke.c b/toke.c
index f8b31bd692..4aa96d3821 100644
--- a/toke.c
+++ b/toke.c
@@ -5049,7 +5049,7 @@ scan_heredoc(register char *s)
s--, herewas = newSVpv(s,d-s);
s += SvCUR(herewas);
- tmpstr = NEWSV(87,80);
+ tmpstr = NEWSV(87,79);
sv_upgrade(tmpstr, SVt_PVIV);
if (term == '\'') {
op_type = OP_CONST;
@@ -5307,8 +5307,8 @@ scan_str(char *start)
multi_close = term;
/* create a new SV to hold the contents. 87 is leak category, I'm
- assuming. 80 is the SV's initial length. What a random number. */
- sv = NEWSV(87,80);
+ assuming. 79 is the SV's initial length. What a random number. */
+ sv = NEWSV(87,79);
sv_upgrade(sv, SVt_PVIV);
SvIVX(sv) = term;
(void)SvPOK_only(sv); /* validate pointer */