зеркало из https://github.com/mozilla/gecko-dev.git
Only a read of 0 means EOF. r=dougt
This commit is contained in:
Родитель
ff25edb9ee
Коммит
b7dc0ab46a
|
@ -61,7 +61,7 @@ PRInt32 nsInputStream::read(void* s, PRInt32 n)
|
|||
return 0;
|
||||
PRInt32 result = 0;
|
||||
mInputStream->Read((char*)s, n, (PRUint32*)&result);
|
||||
if (result < n)
|
||||
if (result == 0)
|
||||
set_at_eof(PR_TRUE);
|
||||
return result;
|
||||
} // nsInputStream::read
|
||||
|
|
Загрузка…
Ссылка в новой задаче