Bug 559711 - Disable NSS in the content process, r=honzab

This commit is contained in:
Benjamin Smedberg 2010-08-09 14:38:44 -04:00
Родитель e9976acb1e
Коммит bd6629abb7
1 изменённых файлов: 7 добавлений и 0 удалений

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

@ -120,6 +120,8 @@
#include "secerr.h"
#include "sslerr.h"
#include "nsXULAppAPI.h"
#ifdef XP_WIN
#include "nsILocalFileWin.h"
#endif
@ -283,6 +285,11 @@ nsTokenEventRunnable::Run()
// creating any other components.
PRBool EnsureNSSInitialized(EnsureNSSOperator op)
{
if (GeckoProcessType_Default != XRE_GetProcessType()) {
NS_ERROR("Trying to initialize PSM/NSS in a non-chrome process!");
return PR_FALSE;
}
static PRBool loading = PR_FALSE;
static PRInt32 haveLoaded = 0;