diff options
author | Steve Peters <steve@fisharerojo.org> | 2005-12-15 02:00:19 +0000 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2005-12-15 02:00:19 +0000 |
commit | f7ae8051c95a2bdf42aad8ef8cbdb82f5608126f (patch) | |
tree | 5ea6f9cf0c99e283f8082fd83edb61d52e464774 /pp_sort.c | |
parent | 0613d57299404732f5bbc0d12e693d4815e8cba8 (diff) | |
download | perl-f7ae8051c95a2bdf42aad8ef8cbdb82f5608126f.tar.gz |
Add a missing FREETMPS to match up with a SAVETMPS. This change
fixes problems with nested sorts. (RTs #7063 and #36430).
p4raw-id: //depot/perl@26360
Diffstat (limited to 'pp_sort.c')
-rw-r--r-- | pp_sort.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1686,6 +1686,7 @@ PP(pp_sort) PL_stack_sp = newsp; POPSTACK; CATCH_SET(oldcatch); + SAVETMPS; } else { MEXTEND(SP, 20); /* Can't afford stack realloc on signal. */ |