Re: [Inline 0.43] insecure dependency when tainting

2002-08-28 Thread Ken Williams
On Tuesday, August 27, 2002, at 09:42 PM, [EMAIL PROTECTED] wrote: This test script: #!/usr/bin/perl -w use strict; use Inline C = q{ int tainting() { return PL_tainting; } }; print tainting(); ... works fine when invoked normally, but gives an error when

Re: [Inline 0.43] insecure dependency when tainting

2002-08-28 Thread hv
Ken Williams [EMAIL PROTECTED] wrote: : Also, I (inadvertently) initially tried to run the test script in : a perl source directory. It fell over quite readily, because perl : hadn't been built there, but I'd suggest Inline should not spot : and take advantage of the source directory unless

Re: Simple Inline C Problem.

2002-08-28 Thread Piers Harding
From the look of it - the code compiled ok on your system but your linker is squealing like a stuck pig :-). I don't know that much about Win32 compiling systems, but you need to find some info ( maybe from www.activestate.com ) about what compilers/linkers you should be using. CHeers. On

Re: [Inline 0.43] insecure dependency when tainting

2002-08-28 Thread Nicholas Clark
On Wed, Aug 28, 2002 at 12:44:52PM +0100, [EMAIL PROTECTED] wrote: Ken Williams [EMAIL PROTECTED] wrote: :What is PERL_CORE? An environment variable we set when building the perl core. It is often used by modules that live dual lives to detect the context in which they are being built.