diff options
author | Daniel Dragan <bulk88@hotmail.com> | 2014-11-07 01:15:18 -0500 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2014-11-07 08:12:06 -0800 |
commit | 93f5d0e84de625ae81930095bb540c0d9dbda3f2 (patch) | |
tree | 511975957d8e5f9491256ad45811f472520cea25 /perl.c | |
parent | 8bd3839933be0a83f4370b836f1e7a654d778c9b (diff) | |
download | perl-93f5d0e84de625ae81930095bb540c0d9dbda3f2.tar.gz |
remove obsolete PL_apiversion
Commit 0e42d607f5 made PL_apiversion unused. Remove it to save memory in
interp struct.
Diffstat (limited to 'perl.c')
-rw-r--r-- | perl.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -325,7 +325,6 @@ perl_construct(pTHXx) PL_stashcache = newHV(); PL_patchlevel = newSVpvs("v" PERL_VERSION_STRING); - PL_apiversion = newSVpvs("v" PERL_API_VERSION_STRING); #ifdef HAS_MMAP if (!PL_mmap_page_size) { @@ -906,7 +905,6 @@ perl_destruct(pTHXx) Safefree(PL_inplace); PL_inplace = NULL; SvREFCNT_dec(PL_patchlevel); - SvREFCNT_dec(PL_apiversion); if (PL_e_script) { SvREFCNT_dec(PL_e_script); |