This commit is contained in:
warren%netscape.com 2000-04-21 05:15:42 +00:00
Родитель 26f4717bc8
Коммит 6ec00c88fa
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -334,10 +334,12 @@ nsStreamIOChannel::AsyncRead(nsIStreamListener *listener, nsISupports *ctxt)
}
}
#if 0
if (mContentType == nsnull) {
rv = mStreamIO->Open(&mContentType, &mContentLength);
if (NS_FAILED(rv)) goto done;
}
#endif
rv = mFileTransport->AsyncRead(this, ctxt);
done:
@ -394,10 +396,12 @@ nsStreamIOChannel::AsyncWrite(nsIInputStream *fromStream,
}
}
#if 0
if (mContentType == nsnull) {
rv = mStreamIO->Open(&mContentType, &mContentLength);
if (NS_FAILED(rv)) goto done;
}
#endif
rv = mFileTransport->AsyncWrite(fromStream, this, ctxt);
done: