summaryrefslogtreecommitdiff
path: root/pp_ctl.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-04-04 20:31:56 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-04-04 20:31:56 +0000
commitbac4b2ad63e048350f82163026a348685ed8c235 (patch)
treebbb62f0fc426831b0e590d73406c99c8e6a19b0a /pp_ctl.c
parenta776945caf9d6bac6272042bcf015c29670a54e2 (diff)
downloadperl-bac4b2ad63e048350f82163026a348685ed8c235.tar.gz
[win32] fixes for various noises under PERL_DESTRUCT_LEVEL
p4raw-id: //depot/win32/perl@878
Diffstat (limited to 'pp_ctl.c')
-rw-r--r--pp_ctl.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/pp_ctl.c b/pp_ctl.c
index 56f673dacd..c20312639f 100644
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -1059,8 +1059,10 @@ die_where(char *message)
else
sv_setpv(ERRSV, message);
- while ((cxix = dopoptoeval(cxstack_ix)) < 0 && curstackinfo->si_prev)
+ while ((cxix = dopoptoeval(cxstack_ix)) < 0 && curstackinfo->si_prev) {
+ dounwind(-1);
POPSTACK();
+ }
if (cxix >= 0) {
I32 optype;