Bug #134113 r=darin
This commit is contained in:
cls%seawood.org 2003-04-10 05:16:51 +00:00
Родитель 138d8c79d6
Коммит 9efe5a5a45
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -136,7 +136,11 @@ public:
virtual ~nsNTLMContinuationState()
{
(gFT->DeleteSecurityContext)(&mCtx);
#ifdef __MINGW32__
(gFT->FreeCredentialsHandle)(&mCred);
#else
(gFT->FreeCredentialHandle)(&mCred);
#endif
}
CredHandle mCred;