diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-09-12 20:08:56 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-09-12 20:08:56 +0000 |
commit | 7d5ea4e771e13c538d9f0504cb48d13891fcb5c9 (patch) | |
tree | 93907373e9324237af6ad6dc9d46db3dd003ca30 /perl.c | |
parent | 2b8dc4d2eb8ad36cf53b962575087dfa9dc6d602 (diff) | |
download | perl-7d5ea4e771e13c538d9f0504cb48d13891fcb5c9.tar.gz |
make sprintf("%g",...) threadsafe; only taint its result iff the
formatted result looks nonstandard
p4raw-id: //depot/perl@4130
Diffstat (limited to 'perl.c')
-rw-r--r-- | perl.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -409,6 +409,11 @@ perl_destruct(pTHXx) Safefree(PL_screamnext); PL_screamnext = 0; + /* float buffer */ + Safefree(PL_efloatbuf); + PL_efloatbuf = Nullch; + PL_efloatsize = 0; + /* startup and shutdown function lists */ SvREFCNT_dec(PL_beginav); SvREFCNT_dec(PL_endav); |