Fix bug 73018 "SSL fails on Mac", check in for sfraser. r=pinkerton, sr=sfraser.

This commit is contained in:
gordon%netscape.com 2001-03-23 22:41:07 +00:00
Родитель 47e458e854
Коммит 0d92d618a2
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -471,9 +471,9 @@ static pascal void NotifierRoutine(void * contextPtr, OTEventCode code, OTResul
if (pollThread)
WakeUpNotifiedThread(pollThread, kOTNoError);
else
WakeUpNotifiedThread(thread, result);
if (thread && (thread != pollThread))
WakeUpNotifiedThread(thread, result);
}