Re: Problems using IPC::Open3 & IPC::Run3

2003-07-07 Thread Donovan Allen
I have never had problems after doing the untie. My premise as to why this seems to be an ok thing to do is: * If you modify the work around code to some sort of debug output everytime $tie_stdin is defined, you will see that STDIN gets tied by mod_perl every request. * Also, my assumption is that

Re: Problems using IPC::Open3 & IPC::Run3

2003-07-07 Thread Stefan Cars
Okey but shouldn't i tie it back some how ? /S On Sat, 5 Jul 2003, Donovan Allen wrote: > Found this somewhere back when this bug first appeared in mod_perl: > > # work-around for mod_perl > my $tie_stdin = tied *STDIN; > untie *STDIN if $tie_stdin; > > # insert open2() or open3() statement afte