diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-10-16 18:30:14 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-10-16 18:30:14 +0000 |
commit | 0253cb4104ff1121338d661bd3f918b6225bd25b (patch) | |
tree | daafd9eb49d2a805a99be0762d847aa0a80c6f17 /perl.c | |
parent | 221373f040d37efa146b635e4ed58b8334fcb8bf (diff) | |
download | perl-0253cb4104ff1121338d661bd3f918b6225bd25b.tar.gz |
another bug in change#3386 (CATCH_SET wasn't reverted correctly)
p4raw-link: @3386 on //depot/perl: 312caa8e97f1c7ee342a9895c2f0e749625b4929
p4raw-id: //depot/perl@4397
Diffstat (limited to 'perl.c')
-rw-r--r-- | perl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1244,7 +1244,7 @@ Perl_call_sv(pTHX_ SV *sv, I32 flags) CATCH_SET(TRUE); call_xbody((OP*)&myop, FALSE); retval = PL_stack_sp - (PL_stack_base + oldmark); - CATCH_SET(FALSE); + CATCH_SET(oldcatch); } else { cLOGOP->op_other = PL_op; |