Bug 528569 - Storage stream's output stream should report itself as blocking. r=biesi

This commit is contained in:
bjarne@runitsoft.com 2011-11-19 12:53:57 +01:00
Родитель 3aeef800be
Коммит 410ad1db0e
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -238,7 +238,7 @@ nsStorageStream::WriteSegments(nsReadSegmentFun reader, void * closure, PRUint32
NS_IMETHODIMP
nsStorageStream::IsNonBlocking(bool *aNonBlocking)
{
*aNonBlocking = true;
*aNonBlocking = false;
return NS_OK;
}