mapped NS_BASE_STREAM to NS_OK for the OnStopBinding(...) notification...

git-svn-id: svn://10.0.0.236/trunk@37384 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rpotts%netscape.com 1999-06-29 08:48:41 +00:00
parent 3a175a8bec
commit 8f72f8ed85

View File

@ -579,6 +579,10 @@ nsFileChannel::Process(void)
return;
error:
// Map EOF to NS_OK for the OnStopBinding(...) notification...
if (NS_BASE_STREAM_EOF == mStatus) {
mStatus = NS_OK;
}
mState = ENDING;
return;
}