bug#99080 using plugger, makes the temp file huge; r=peterl; sr=dougt

This commit is contained in:
serge%netscape.com 2001-11-14 02:15:57 +00:00
Родитель d74f74e1cc
Коммит 4885cc958f
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -2106,7 +2106,7 @@ NS_IMETHODIMP nsPluginStreamListenerPeer::OnDataAvailable(nsIRequest *request,
// if we are caching this to disk ourselves, lets write the bytes out.
nsCOMPtr<nsIOutputStream> outStream;
mPluginStreamInfo->GetLocalCachedFileStream(getter_AddRefs(outStream));
while (outStream && amountWrote <= amountRead && NS_SUCCEEDED(rv))
while (outStream && amountWrote < amountRead && NS_SUCCEEDED(rv))
rv = outStream->Write(buffer, amountRead, &amountWrote);
delete [] buffer;
}