зеркало из https://github.com/mozilla/pjs.git
Fix incorrect check in isAlive
This commit is contained in:
Родитель
d194e5a6bd
Коммит
ef67fa9d61
|
@ -2089,7 +2089,7 @@ nsSocketTransport::IsAlive (PRUint32 seconds, PRBool *alive)
|
|||
{
|
||||
PRErrorCode code = PR_GetError ();
|
||||
|
||||
if (rval == 0 || code == PR_WOULD_BLOCK_ERROR)
|
||||
if (rval == 0 || code != PR_WOULD_BLOCK_ERROR)
|
||||
*alive = PR_FALSE;
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче