This commit is contained in:
jpierre%netscape.com 2002-09-07 02:48:45 +00:00
Родитель b9f3814bc0
Коммит 30555cdf21
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -30,7 +30,7 @@
* may use your version of this file under either the MPL or the
* GPL.
*
* $Id: sslmutex.c,v 1.15 2002-09-07 01:44:11 jpierre%netscape.com Exp $
* $Id: sslmutex.c,v 1.16 2002-09-07 02:48:45 jpierre%netscape.com Exp $
*/
#include "seccomon.h"
@ -370,6 +370,9 @@ static SECStatus sslMutex_2LevelDestroy(sslMutex *sem)
SECStatus
sslMutex_Init(sslMutex *pMutex, int shared)
{
#ifdef WINNT
SECStatus retvalue;
#endif
HANDLE hMutex;
SECURITY_ATTRIBUTES attributes =
{ sizeof(SECURITY_ATTRIBUTES), NULL, TRUE };