From 971f4bf107c4114680b92221b21d1da9ec393811 Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Thu, 31 Aug 2000 04:18:19 +0000 Subject: [PATCH] The #6929 was too skimpy. p4raw-id: //depot/perl@6936 --- sv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sv.c b/sv.c index 5cdcbf9..0fdae01 100644 --- a/sv.c +++ b/sv.c @@ -2212,7 +2212,7 @@ Perl_sv_2pv(pTHX_ register SV *sv, STRLEN *lp) * --jhi Sep 1999 */ if (SvTYPE(sv) < SVt_PVNV) sv_upgrade(sv, SVt_PVNV); - SvGROW(sv, NV_DIG + 1); + SvGROW(sv, NV_DIG + 10); /* sign, decimal separator, e+NNNNN, nul */ s = SvPVX(sv); olderrno = errno; /* some Xenix systems wipe out errno here */ #ifdef apollo -- 2.7.4