projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
9212bbb
)
Turn off 'expression tainted' flag at end of runops()
Chip Salzenberg [Tue, 18 Feb 1997 21:08:02 +0000 (09:08 +1200)]
run.c
patch
|
blob
|
blame
|
history
diff --git
a/run.c
b/run.c
index
a952dac
..
0e0fd1c
100644
(file)
--- 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;
}