diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-04-04 20:31:56 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-04-04 20:31:56 +0000 |
commit | bac4b2ad63e048350f82163026a348685ed8c235 (patch) | |
tree | bbb62f0fc426831b0e590d73406c99c8e6a19b0a /pp_ctl.c | |
parent | a776945caf9d6bac6272042bcf015c29670a54e2 (diff) | |
download | perl-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.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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; |