HTTP 300 page screws up session history

bug 114982 sr=darin r=rpotts a=asa
This commit is contained in:
badami%netscape.com 2002-04-11 04:46:27 +00:00
parent 583eafcb12
commit ae63b4918c

View File

@ -505,15 +505,10 @@ nsHttpChannel::ProcessResponse()
case 302:
case 307:
// these redirects can be cached (don't store the response body)
if (mCacheEntry) {
rv = InitCacheEntry();
if (NS_FAILED(rv))
CloseCacheEntry(rv);
}
rv = ProcessRedirection(httpStatus);
CloseCacheEntry(rv);
if (NS_FAILED(rv)) {
if (NS_SUCCEEDED(rv))
CloseCacheEntry(InitCacheEntry());
else {
LOG(("ProcessRedirection failed [rv=%x]\n", rv));
rv = ProcessNormal();
}