Skip to content

Commit

Permalink
Turn off 'expression tainted' flag at end of runops()
Browse files Browse the repository at this point in the history
  • Loading branch information
Chip Salzenberg authored and Chip Salzenberg committed Feb 21, 1997
1 parent 9212bbb commit fd18d30
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions run.c
Expand Up @@ -27,6 +27,8 @@ runops() {
runlevel++;

while ( op = (*op->op_ppaddr)() ) ;

TAINT_NOT;
return 0;
}

Expand Down Expand Up @@ -54,6 +56,8 @@ runops() {
DEBUG_P(debprof(op));
}
} while ( op = (*op->op_ppaddr)() );

TAINT_NOT;
return 0;
}

Expand Down

0 comments on commit fd18d30

Please sign in to comment.