in reply to Debugging taint
use Scalar::Util 'tainted'; print tainted($_), " $_\n" for @INC; eval { require DebugApp; }; warn $@ if $@;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Debugging taint
by SilasTheMonk (Chaplain) on Sep 24, 2008 at 19:10 UTC |