Bug 333691, [@ nsSSLThread::requestPoll - nsSSLIOLayerPoll]

r=rrelyea
This commit is contained in:
kaie%kuix.de 2006-04-20 16:21:57 +00:00
Родитель 9607d14ac4
Коммит d68044ddc1
1 изменённых файлов: 7 добавлений и 2 удалений

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

@ -1132,8 +1132,13 @@ nsSSLIOLayerPoll(PRFileDesc *fd, PRInt16 in_flags, PRInt16 *out_flags)
{
nsNSSShutDownPreventionLock locker;
if (out_flags)
*out_flags = 0;
if (!out_flags)
{
NS_WARNING("nsSSLIOLayerPoll called with null out_flags");
return 0;
}
*out_flags = 0;
if (!fd)
{