fixes smoketest blocker, bug 210579 "hang trying to access page with invalid headers" r=dougt sr=bzbarsky

This commit is contained in:
darin%netscape.com 2003-06-25 17:24:48 +00:00
Родитель a88533cedc
Коммит 68839f2ee3
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -2569,7 +2569,7 @@ nsHttpChannel::GetContentType(nsACString &value)
NS_IMETHODIMP
nsHttpChannel::SetContentType(const nsACString &value)
{
if (mIsPending) {
if (mListener) {
if (!mResponseHead)
return NS_ERROR_NOT_AVAILABLE;
@ -2603,7 +2603,7 @@ nsHttpChannel::GetContentCharset(nsACString &value)
NS_IMETHODIMP
nsHttpChannel::SetContentCharset(const nsACString &value)
{
if (mIsPending) {
if (mListener) {
if (!mResponseHead)
return NS_ERROR_NOT_AVAILABLE;