nayakgi / perl-compiler

Automatically exported from code.google.com/p/perl-compiler
Other
0 stars 0 forks source link

cannot use an __END__ with taint mode #288

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

try to compile and run that script ( __END__ part should be included
> cat script.pl
#!./perl -T

print("ok\n");

__END__
> # end

What is the expected output? What do you see instead?

> ./script.bin
Insecure dependency in eval_sv() while running with -T switch.

> ./script
ok

note that we can run the compiled script without the __END__ part
> cat script
#!./perl -T

print("ok\n");
> ./script.bin
ok

Original issue reported on code.google.com by nicolas....@gmail.com on 31 Jan 2014 at 12:20

GoogleCodeExporter commented 9 years ago
this is also probably related to issues 151 and 233 which are fixed

Original comment by nicolas....@gmail.com on 31 Jan 2014 at 12:21

GoogleCodeExporter commented 9 years ago

Original comment by todd.e.rinaldo on 31 Jan 2014 at 12:35