Subject: | build_cgi_env bug |
Jesse,
These lines in HTTP::Server::Simple cause environment variables to grow with each request processed. I'm not sure what purpose the concatenation is supposed to server.
if ( $ENV{$tag} ) {
$ENV{$tag} .= "; $val";
}
-Todd