Bugzilla – Bug 2216
bug in redirection (HTTP response tag LOCATION) in asynch http
Last modified: 2008-09-15 14:36:01 UTC
Since the symantics of http response headers are case independant, there is a bug in SimpleAsyncHTTP.pm at the line: if (my $location = ($h{'Location'}) { One possible bug fix is: my $k foreach $k (keys(%h)) { $h{lc($k)} = $h{$k};}; if (my $location = ($h{'location'}) { One URL that triggers this bug is: "http://locator.archive.org/cgi-bin/find_file.cgi?file=tod2005-02-27.flac16"
Fixed in subversion change 4490.