Re: [ID 20001202.002] [BUG all] 'die qr{pattern}' does not check termination
Simon Cozens [Sun, 10 Dec 2000 00:55:37 +0000 (00:55 +0000)]
Message-ID: <20001210005537.B16221@deep-dark-truthful-mirror.perlhacker.org>

p4raw-id: //depot/perl@8066

pp_sys.c

index da148d8..7d6386e 100644 (file)
--- a/pp_sys.c
+++ b/pp_sys.c
@@ -448,7 +448,7 @@ PP(pp_die)
     }
     else {
        tmpsv = TOPs;
-       tmps = SvROK(tmpsv) ? Nullch : SvPV(tmpsv, len);
+        tmps = (SvROK(tmpsv) && PL_in_eval) ? Nullch : SvPV(tmpsv, len);
     }
     if (!tmps || !len) {
        SV *error = ERRSV;