On Fri, 24 May 2002, Autrijus Tang wrote:
 
> It's bleadperl-16610. I'll try to hunt down the bug -- any quick pointers?

the bug i was thinking of has been fixed in bleedperl (changes 11536 + 
11553), and there's a workaround in modperl2 for 5.6.x

that bug caused STDIN to loose its tied-ness, so CGI.pm would end up 
trying to read stdin-STDIN rather than tied-to-apache-STDIN.

the other workaround for that bug was to change CGI.pm from:
$self->read_from_client(\*STDIN,\$query_string,$content_length,0)
to:         
$self->read_from_client('STDIN',\$query_string,$content_length,0)

do you have a simple test case to reproduce the problem?




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to