From: Chip Salzenberg <chip@perl.com>
Date: Tue, 18 Feb 1997 21:08:02 +0000 (+1200)
Subject: Turn off 'expression tainted' flag at end of runops()
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=fd18d3085cbff355971e001ffa7fcc9cdfc2d57a;p=p5sagit%2Fp5-mst-13.2.git

Turn off 'expression tainted' flag at end of runops()
---

diff --git a/run.c b/run.c
index a952dac..0e0fd1c 100644
--- a/run.c
+++ b/run.c
@@ -27,6 +27,8 @@ runops() {
     runlevel++;
 
     while ( op = (*op->op_ppaddr)() ) ;
+
+    TAINT_NOT;
     return 0;
 }
 
@@ -54,6 +56,8 @@ runops() {
 	    DEBUG_P(debprof(op));
 	}
     } while ( op = (*op->op_ppaddr)() );
+
+    TAINT_NOT;
     return 0;
 }