diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2004-03-04 23:32:38 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2004-03-04 23:32:38 +0000 |
commit | 936c78b5fbfb4bf020fdea54970ee48649babcc3 (patch) | |
tree | 46a57f731ab8c3b39318da3028ea2df820eacbd2 /pp_ctl.c | |
parent | 4ccc72b7cccd09b4aef23610849d9be0320655b6 (diff) | |
download | perl-936c78b5fbfb4bf020fdea54970ee48649babcc3.tar.gz |
[perl #27206] Memory leak in continue loop
make sure redo always frees temps
p4raw-id: //depot/perl@22438
Diffstat (limited to 'pp_ctl.c')
-rw-r--r-- | pp_ctl.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -2115,6 +2115,7 @@ PP(pp_redo) TOPBLOCK(cx); oldsave = PL_scopestack[PL_scopestack_ix - 1]; LEAVE_SCOPE(oldsave); + FREETMPS; return cx->blk_loop.redo_op; } |